]> git.sur5r.net Git - u-boot/blobdiff - drivers/clk/clk_sandbox.c
rockchip: gpio: Read the GPIO value correctly
[u-boot] / drivers / clk / clk_sandbox.c
index 058225a766dc1c83fc370e99a6c538c956e137b6..367130f8b76b12a662d41086932e165bfb185390 100644 (file)
@@ -32,7 +32,7 @@ static ulong sandbox_clk_set_rate(struct udevice *dev, ulong rate)
        return 0;
 }
 
-ulong sandbox_get_periph_rate(struct udevice *dev, int periph)
+static ulong sandbox_get_periph_rate(struct udevice *dev, int periph)
 {
        struct sandbox_clk_priv *priv = dev_get_priv(dev);
 
@@ -41,7 +41,8 @@ ulong sandbox_get_periph_rate(struct udevice *dev, int periph)
        return priv->periph_rate[periph];
 }
 
-ulong sandbox_set_periph_rate(struct udevice *dev, int periph, ulong rate)
+static ulong sandbox_set_periph_rate(struct udevice *dev, int periph,
+                                    ulong rate)
 {
        struct sandbox_clk_priv *priv = dev_get_priv(dev);
        ulong old_rate;