]> Git Repo - J-u-boot.git/commitdiff
net: macb: Fix clk API usage for RISC-V systems
authorAnup Patel <[email protected]>
Mon, 25 Feb 2019 08:14:36 +0000 (08:14 +0000)
committerAndes <[email protected]>
Wed, 27 Feb 2019 01:12:33 +0000 (09:12 +0800)
Don't fail in macb_enable_clk() if clk_enable() returns
-ENOSYS because we get -ENOSYS for fixed-rate clocks.

Signed-off-by: Anup Patel <[email protected]>
Reviewed-by: Bin Meng <[email protected]>
drivers/net/macb.c

index c9ee22279ae121b9347659930bb1eb34d28b4604..0254e211e66bf286f5b8a5cb4f7edaddec3ce9f6 100644 (file)
@@ -1061,14 +1061,13 @@ static int macb_enable_clk(struct udevice *dev)
                return -EINVAL;
 
        /*
-        * Zynq clock driver didn't support for enable or disable
-        * clock. Hence, clk_enable() didn't apply for Zynq
+        * If clock driver didn't support enable or disable then
+        * we get -ENOSYS from clk_enable(). To handle this, we
+        * don't fail for ret == -ENOSYS.
         */
-#ifndef CONFIG_MACB_ZYNQ
        ret = clk_enable(&clk);
-       if (ret)
+       if (ret && ret != -ENOSYS)
                return ret;
-#endif
 
        clk_rate = clk_get_rate(&clk);
        if (!clk_rate)
This page took 0.038992 seconds and 4 git commands to generate.