From mboxrd@z Thu Jan 1 00:00:00 1970 From: mturquette@linaro.org (Mike Turquette) Date: Wed, 18 Dec 2013 23:57:25 -0800 Subject: [PATCH] clk: at91: fix pmc_clk_ids data type attriubte In-Reply-To: <52B01A50.4080209@atmel.com> References: <1387229127-7605-1-git-send-email-b.brezillon@overkiz.com> <52B01A50.4080209@atmel.com> Message-ID: <20131219075725.18119.80803@quantum> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org Quoting Nicolas Ferre (2013-12-17 01:33:04) > On 16/12/2013 22:25, Boris BREZILLON : > > Fix pmc_clk_ids data type attribute (__initdata -> __initconst). > > > > Signed-off-by: Boris BREZILLON > > Reported-by: Fengguang Wu > > Acked-by: Nicolas Ferre > > I take it in at91-3.14-cleanup2 branch and send it upstream through > arm-soc like any other CCF material for AT91 for the 3.14 release. > > I guess that even without Mike Acked-by, this little fix can follow this > path. I can take it into the clk tree if you prefer. Regards, Mike > > Bye, > > > --- > > drivers/clk/at91/pmc.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/drivers/clk/at91/pmc.c b/drivers/clk/at91/pmc.c > > index 7b9db60..4c03eda 100644 > > --- a/drivers/clk/at91/pmc.c > > +++ b/drivers/clk/at91/pmc.c > > @@ -228,7 +228,7 @@ out_free_pmc: > > return NULL; > > } > > > > -static const struct of_device_id pmc_clk_ids[] __initdata = { > > +static const struct of_device_id pmc_clk_ids[] __initconst = { > > /* Main clock */ > > { > > .compatible = "atmel,at91rm9200-clk-main", > > > > > -- > Nicolas Ferre