Message ID | 20200212101544.8793-5-geert+renesas@glider.be (mailing list archive) |
---|---|
State | Mainlined |
Commit | 3a94afc689475691bdddc664b33c1ffcbfb00263 |
Delegated to: | Paul Burton |
Headers | show |
Series | MIPS: Replace <linux/clk-provider.h> by <linux/of_clk.h> | expand |
Quoting Geert Uytterhoeven (2020-02-12 02:15:41) > The Ingenic JZ4740 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>
Hi, Le mer., févr. 12, 2020 at 11:15, Geert Uytterhoeven <geert+renesas@glider.be> a écrit : > The Ingenic JZ4740 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> Looks good to me. Reviewed-by: Paul Cercueil <paul@crapouillou.net> > --- > arch/mips/jz4740/time.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/arch/mips/jz4740/time.c b/arch/mips/jz4740/time.c > index 5476899f0882a4b4..605a84a250bfb299 100644 > --- a/arch/mips/jz4740/time.c > +++ b/arch/mips/jz4740/time.c > @@ -4,8 +4,8 @@ > * JZ4740 platform time support > */ > > -#include <linux/clk-provider.h> > #include <linux/clocksource.h> > +#include <linux/of_clk.h> > > #include <asm/mach-jz4740/timer.h> > > -- > 2.17.1 >
diff --git a/arch/mips/jz4740/time.c b/arch/mips/jz4740/time.c index 5476899f0882a4b4..605a84a250bfb299 100644 --- a/arch/mips/jz4740/time.c +++ b/arch/mips/jz4740/time.c @@ -4,8 +4,8 @@ * JZ4740 platform time support */ -#include <linux/clk-provider.h> #include <linux/clocksource.h> +#include <linux/of_clk.h> #include <asm/mach-jz4740/timer.h>
The Ingenic JZ4740 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> --- arch/mips/jz4740/time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)