diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2020-02-12 11:08:30 +0100 |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2020-02-13 07:26:36 +0100 |
commit | 1a1a9fafc6a2536835b38886ca4afe50d19dd2b9 (patch) | |
tree | 249613e431ef4856e2a08955b480acc84d9f4a9a /arch/arm/mach-zynq/common.c | |
parent | Linux 5.6-rc1 (diff) | |
download | linux-1a1a9fafc6a2536835b38886ca4afe50d19dd2b9.tar.xz linux-1a1a9fafc6a2536835b38886ca4afe50d19dd2b9.zip |
ARM: zynq: Replace <linux/clk-provider.h> by <linux/of_clk.h>
The Zynq 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: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'arch/arm/mach-zynq/common.c')
-rw-r--r-- | arch/arm/mach-zynq/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-zynq/common.c b/arch/arm/mach-zynq/common.c index 3a4248fd7962..a9dd2f71cd19 100644 --- a/arch/arm/mach-zynq/common.c +++ b/arch/arm/mach-zynq/common.c @@ -12,10 +12,10 @@ #include <linux/cpumask.h> #include <linux/platform_device.h> #include <linux/clk.h> -#include <linux/clk-provider.h> #include <linux/clk/zynq.h> #include <linux/clocksource.h> #include <linux/of_address.h> +#include <linux/of_clk.h> #include <linux/of_irq.h> #include <linux/of_platform.h> #include <linux/of.h> |