diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2020-02-12 13:00:47 +0300 |
---|---|---|
committer | Vineet Gupta <vgupta@synopsys.com> | 2020-02-12 22:09:47 +0300 |
commit | 3b00b042eeaaea43b8702b2dd4b9cb0916a2e052 (patch) | |
tree | ef6783b967efb40ccd3c3bc7c9803401edcef554 /arch/arc | |
parent | 0acdf63d2296f9542437a4842ad94554d240eab6 (diff) | |
download | linux-3b00b042eeaaea43b8702b2dd4b9cb0916a2e052.tar.xz |
ARC: Replace <linux/clk-provider.h> by <linux/of_clk.h>
The ARC platform code is not a clock provider, and just needs to call
of_clk_init().
Hence it can include <linux/of_clk.h> instead of <linux/clk-provider.h>.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Stephen Boyd <sboyd@kernel.org>
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
Diffstat (limited to 'arch/arc')
-rw-r--r-- | arch/arc/kernel/setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arc/kernel/setup.c b/arch/arc/kernel/setup.c index e1c647490f00..aa41af6ef4ac 100644 --- a/arch/arc/kernel/setup.c +++ b/arch/arc/kernel/setup.c @@ -8,11 +8,11 @@ #include <linux/delay.h> #include <linux/root_dev.h> #include <linux/clk.h> -#include <linux/clk-provider.h> #include <linux/clocksource.h> #include <linux/console.h> #include <linux/module.h> #include <linux/cpu.h> +#include <linux/of_clk.h> #include <linux/of_fdt.h> #include <linux/of.h> #include <linux/cache.h> |