Re: [PATCH] clk: mmp: add missing header dependencies

2016-09-14 Thread Stephen Boyd
On 09/14, Baoyou Xie wrote: > We get 1 warning when building kernel with W=1: > drivers/clk/mmp/clk-mmp2.c:75:13: warning: no previous prototype for > 'mmp2_clk_init' [-Wmissing-prototypes] > > In fact, this function is declared in linux/clk/mmp.h, > so this patch add missing header dependencies.

Re: [PATCH] clk: mmp: add missing header dependencies

2016-09-14 Thread Arnd Bergmann
On Wednesday, September 14, 2016 2:23:28 PM CEST Baoyou Xie wrote: > We get 1 warning when building kernel with W=1: > drivers/clk/mmp/clk-mmp2.c:75:13: warning: no previous prototype for > 'mmp2_clk_init' [-Wmissing-prototypes] > > In fact, this function is declared in linux/clk/mmp.h, > so this

[PATCH] clk: mmp: add missing header dependencies

2016-09-13 Thread Baoyou Xie
We get 1 warning when building kernel with W=1: drivers/clk/mmp/clk-mmp2.c:75:13: warning: no previous prototype for 'mmp2_clk_init' [-Wmissing-prototypes] In fact, this function is declared in linux/clk/mmp.h, so this patch add missing header dependencies. Signed-off-by: Baoyou Xie --- driver