diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2020-02-12 13:15:44 +0300 |
---|---|---|
committer | Paul Burton <paulburton@kernel.org> | 2020-02-19 21:37:58 +0300 |
commit | 9926108f799aaae0acffaf3dc7f62063423b25ea (patch) | |
tree | 8c02db39d75bf8c78674b9ec3ff73e4b088515e1 /arch/mips/ralink/timer-gic.c | |
parent | 97e04ea15fd5324d9e10343fdece698b26365d82 (diff) | |
download | linux-9926108f799aaae0acffaf3dc7f62063423b25ea.tar.xz |
MIPS: ralink: Replace <linux/clk-provider.h> by <linux/of_clk.h>
The Ralink 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: John Crispin <john@phrozen.org>
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: James Hartley <james.hartley@sondrel.com>
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
Diffstat (limited to 'arch/mips/ralink/timer-gic.c')
-rw-r--r-- | arch/mips/ralink/timer-gic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/ralink/timer-gic.c b/arch/mips/ralink/timer-gic.c index 944fbe0fc741..dcf2a44ac51e 100644 --- a/arch/mips/ralink/timer-gic.c +++ b/arch/mips/ralink/timer-gic.c @@ -8,7 +8,7 @@ #include <linux/init.h> #include <linux/of.h> -#include <linux/clk-provider.h> +#include <linux/of_clk.h> #include <linux/clocksource.h> #include "common.h" |