From: Sachin Kamat Date: Thu, 8 Aug 2013 04:25:47 +0000 (+0530) Subject: clk: tegra114: Fix incorrect placement of __initdata X-Git-Tag: v3.12-rc1~78^2~56 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=056dfcf67ebaa9eb3aff5f35ce98c073157f1d5b;p=kernel%2Fkernel-generic.git clk: tegra114: Fix incorrect placement of __initdata __initdata should be placed between the variable name and equal sign for the variable to be placed in the intended section. Signed-off-by: Sachin Kamat Tested-by: Stephen Warren Acked-by: Stephen Warren Signed-off-by: Mike Turquette --- diff --git a/drivers/clk/tegra/clk-tegra114.c b/drivers/clk/tegra/clk-tegra114.c index b6015cb..2d3b3dc 100644 --- a/drivers/clk/tegra/clk-tegra114.c +++ b/drivers/clk/tegra/clk-tegra114.c @@ -2156,7 +2156,7 @@ static const struct of_device_id pmc_match[] __initconst = { * dfll_soc/dfll_ref apparently must be kept enabled, otherwise I2C5 * breaks */ -static __initdata struct tegra_clk_init_table init_table[] = { +static struct tegra_clk_init_table init_table[] __initdata = { {uarta, pll_p, 408000000, 0}, {uartb, pll_p, 408000000, 0}, {uartc, pll_p, 408000000, 0},