diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2020-02-12 11:08:27 +0100 |
---|---|---|
committer | Heiko Stuebner <heiko@sntech.de> | 2020-04-13 09:40:45 +0200 |
commit | 37aed36cfec3b35469be3dc5fb52c8a459414cff (patch) | |
tree | 3b9c6a7124125db06b169fe73a3d6fda842436ca /arch/arm/mach-rockchip | |
parent | Linux 5.7-rc1 (diff) | |
download | linux-37aed36cfec3b35469be3dc5fb52c8a459414cff.tar.xz linux-37aed36cfec3b35469be3dc5fb52c8a459414cff.zip |
ARM: rockchip: Replace <linux/clk-provider.h> by <linux/of_clk.h>
The Rockchip 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/20200212100830.446-5-geert+renesas@glider.be
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
Diffstat (limited to 'arch/arm/mach-rockchip')
-rw-r--r-- | arch/arm/mach-rockchip/rockchip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-rockchip/rockchip.c b/arch/arm/mach-rockchip/rockchip.c index f9797a2b5d0d..beea4564eed4 100644 --- a/arch/arm/mach-rockchip/rockchip.c +++ b/arch/arm/mach-rockchip/rockchip.c @@ -9,9 +9,9 @@ #include <linux/kernel.h> #include <linux/init.h> #include <linux/io.h> +#include <linux/of_clk.h> #include <linux/of_platform.h> #include <linux/irqchip.h> -#include <linux/clk-provider.h> #include <linux/clocksource.h> #include <linux/mfd/syscon.h> #include <linux/regmap.h> |