diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2020-02-12 13:08:29 +0300 |
---|---|---|
committer | Maxime Ripard <maxime@cerno.tech> | 2020-02-12 20:15:39 +0300 |
commit | 614215c8636aeb61961b3eb5030999a2254b3b52 (patch) | |
tree | cd21056147c8bef87a3d522f0503a5b886029027 /arch/arm/mach-sunxi | |
parent | bb6d3fb354c5ee8d6bde2d576eb7220ea09862b9 (diff) | |
download | linux-614215c8636aeb61961b3eb5030999a2254b3b52.tar.xz |
ARM: sunxi: Replace <linux/clk-provider.h> by <linux/of_clk.h>
The Allwinner 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: Maxime Ripard <maxime@cerno.tech>
Diffstat (limited to 'arch/arm/mach-sunxi')
-rw-r--r-- | arch/arm/mach-sunxi/sunxi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-sunxi/sunxi.c b/arch/arm/mach-sunxi/sunxi.c index 933b6930f024..06da2747a90b 100644 --- a/arch/arm/mach-sunxi/sunxi.c +++ b/arch/arm/mach-sunxi/sunxi.c @@ -10,9 +10,9 @@ * warranty of any kind, whether express or implied. */ -#include <linux/clk-provider.h> #include <linux/clocksource.h> #include <linux/init.h> +#include <linux/of_clk.h> #include <linux/platform_device.h> #include <linux/reset/sunxi.h> |