diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2020-11-10 16:50:29 +0100 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2020-12-07 14:00:51 -0800 |
commit | 16a30ba15cd782e95fc57e87c2c4515778d3b493 (patch) | |
tree | a03da98d8438b0dd3d13453a6051cb51c3e4cdc7 /arch/sh | |
parent | 3650b228f83adda7e5ee532e2b90429c03f7b9ec (diff) |
sh: boards: Replace <linux/clk-provider.h> by <linux/of_clk.h>
The SuperH/J2 DT 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>
Link: https://lore.kernel.org/r/20201110155029.3286090-1-geert+renesas@glider.be
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'arch/sh')
-rw-r--r-- | arch/sh/boards/of-generic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/boards/of-generic.c b/arch/sh/boards/of-generic.c index bffbe69b2236..921d76fc3358 100644 --- a/arch/sh/boards/of-generic.c +++ b/arch/sh/boards/of-generic.c @@ -6,10 +6,10 @@ */ #include <linux/of.h> +#include <linux/of_clk.h> #include <linux/of_fdt.h> #include <linux/clocksource.h> #include <linux/irqchip.h> -#include <linux/clk-provider.h> #include <asm/machvec.h> #include <asm/rtc.h> |