Re: [PATCH] clk: tegra: local arrays should be static

2013-02-07 Thread Prashant Gaikwad
On Thursday 07 February 2013 10:00 PM, Peter De Schrijver wrote: cclk_g_parents, cclk_lp_parents and sclk_parents are only accessed from within clk-tegra30.c. Declare them static to avoid namespace polution. Signed-off-by: Peter De Schrijver Reviewed-by: Prashant Gaikwad --- drivers/clk/

Re: [PATCH] clk: tegra: local arrays should be static

2013-02-07 Thread Stephen Warren
On 02/07/2013 10:49 AM, Mike Turquette wrote: > Quoting Peter De Schrijver (2013-02-07 08:30:36) >> cclk_g_parents, cclk_lp_parents and sclk_parents are only accessed from >> within >> clk-tegra30.c. Declare them static to avoid namespace polution. >> >> Signed-off-by: Peter De Schrijver > > Ack

Re: [PATCH] clk: tegra: local arrays should be static

2013-02-07 Thread Mike Turquette
Quoting Peter De Schrijver (2013-02-07 08:30:36) > cclk_g_parents, cclk_lp_parents and sclk_parents are only accessed from within > clk-tegra30.c. Declare them static to avoid namespace polution. > > Signed-off-by: Peter De Schrijver Acked-by: Mike Turquette -- To unsubscribe from this list: se

[PATCH] clk: tegra: local arrays should be static

2013-02-07 Thread Peter De Schrijver
cclk_g_parents, cclk_lp_parents and sclk_parents are only accessed from within clk-tegra30.c. Declare them static to avoid namespace polution. Signed-off-by: Peter De Schrijver --- drivers/clk/tegra/clk-tegra30.c | 20 ++-- 1 files changed, 10 insertions(+), 10 deletions(-) di