diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2020-02-12 11:15:43 +0100 |
---|---|---|
committer | Paul Burton <paulburton@kernel.org> | 2020-02-19 10:36:21 -0800 |
commit | 97e04ea15fd5324d9e10343fdece698b26365d82 (patch) | |
tree | a54980e6549964b5b34ae8808b723a9f4270e409 | |
parent | 071cec1bfe1f5158ce8254c7cf2dc0be973efa84 (diff) | |
download | linux-97e04ea15fd5324d9e10343fdece698b26365d82.tar.gz linux-97e04ea15fd5324d9e10343fdece698b26365d82.tar.bz2 linux-97e04ea15fd5324d9e10343fdece698b26365d82.zip |
MIPS: Pistachio: Replace <linux/clk-provider.h> by <linux/of_clk.h>
The Pistachio 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: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Stephen Boyd <sboyd@kernel.org>
Acked-by: James Hartley <james.hartley@sondrel.com>
Signed-off-by: Paul Burton <paulburton@kernel.org>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: Florian Fainelli <f.fainelli@gmail.com>
Cc: Paul Cercueil <paul@crapouillou.net>
Cc: John Crispin <john@phrozen.org>
Cc: linux-mips@vger.kernel.org
Cc: bcm-kernel-feedback-list@broadcom.com
Cc: linux-clk@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
-rw-r--r-- | arch/mips/pistachio/time.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/pistachio/time.c b/arch/mips/pistachio/time.c index 3c9235c7710a..de64751dec40 100644 --- a/arch/mips/pistachio/time.c +++ b/arch/mips/pistachio/time.c @@ -6,10 +6,10 @@ */ #include <linux/clk.h> -#include <linux/clk-provider.h> #include <linux/clocksource.h> #include <linux/init.h> #include <linux/of.h> +#include <linux/of_clk.h> #include <asm/mips-cps.h> #include <asm/time.h> |