* [PATCH] clk: at91: fix pmc_clk_ids data type attriubte
@ 2013-12-16 21:25 Boris BREZILLON
2013-12-17 9:33 ` Nicolas Ferre
2013-12-19 7:56 ` Mike Turquette
0 siblings, 2 replies; 5+ messages in thread
From: Boris BREZILLON @ 2013-12-16 21:25 UTC (permalink / raw)
To: linux-arm-kernel
Fix pmc_clk_ids data type attribute (__initdata -> __initconst).
Signed-off-by: Boris BREZILLON <b.brezillon@overkiz.com>
Reported-by: Fengguang Wu <fengguang.wu@intel.com>
---
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",
--
1.7.9.5
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH] clk: at91: fix pmc_clk_ids data type attriubte
2013-12-16 21:25 [PATCH] clk: at91: fix pmc_clk_ids data type attriubte Boris BREZILLON
@ 2013-12-17 9:33 ` Nicolas Ferre
2013-12-19 7:57 ` Mike Turquette
2013-12-19 7:56 ` Mike Turquette
1 sibling, 1 reply; 5+ messages in thread
From: Nicolas Ferre @ 2013-12-17 9:33 UTC (permalink / raw)
To: linux-arm-kernel
On 16/12/2013 22:25, Boris BREZILLON :
> Fix pmc_clk_ids data type attribute (__initdata -> __initconst).
>
> Signed-off-by: Boris BREZILLON <b.brezillon@overkiz.com>
> Reported-by: Fengguang Wu <fengguang.wu@intel.com>
Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
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.
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
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH] clk: at91: fix pmc_clk_ids data type attriubte
2013-12-16 21:25 [PATCH] clk: at91: fix pmc_clk_ids data type attriubte Boris BREZILLON
2013-12-17 9:33 ` Nicolas Ferre
@ 2013-12-19 7:56 ` Mike Turquette
1 sibling, 0 replies; 5+ messages in thread
From: Mike Turquette @ 2013-12-19 7:56 UTC (permalink / raw)
To: linux-arm-kernel
Quoting Boris BREZILLON (2013-12-16 13:25:27)
> Fix pmc_clk_ids data type attribute (__initdata -> __initconst).
>
> Signed-off-by: Boris BREZILLON <b.brezillon@overkiz.com>
> Reported-by: Fengguang Wu <fengguang.wu@intel.com>
Acked-by: Mike Turquette <mturquette@linaro.org>
> ---
> 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",
> --
> 1.7.9.5
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH] clk: at91: fix pmc_clk_ids data type attriubte
2013-12-17 9:33 ` Nicolas Ferre
@ 2013-12-19 7:57 ` Mike Turquette
2013-12-19 15:47 ` Nicolas Ferre
0 siblings, 1 reply; 5+ messages in thread
From: Mike Turquette @ 2013-12-19 7:57 UTC (permalink / raw)
To: linux-arm-kernel
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 <b.brezillon@overkiz.com>
> > Reported-by: Fengguang Wu <fengguang.wu@intel.com>
>
> Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
>
> 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
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH] clk: at91: fix pmc_clk_ids data type attriubte
2013-12-19 7:57 ` Mike Turquette
@ 2013-12-19 15:47 ` Nicolas Ferre
0 siblings, 0 replies; 5+ messages in thread
From: Nicolas Ferre @ 2013-12-19 15:47 UTC (permalink / raw)
To: linux-arm-kernel
On 19/12/2013 08:57, Mike Turquette :
> 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 <b.brezillon@overkiz.com>
>>> Reported-by: Fengguang Wu <fengguang.wu@intel.com>
>>
>> Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
>>
>> 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.
Do not bother Mike, I take this little one for having all CCF AT91
material in one place before 3.14-rc1.
After that milestone, we will take the usual patch using your tree.
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
>
--
Nicolas Ferre
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2013-12-19 15:47 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-16 21:25 [PATCH] clk: at91: fix pmc_clk_ids data type attriubte Boris BREZILLON
2013-12-17 9:33 ` Nicolas Ferre
2013-12-19 7:57 ` Mike Turquette
2013-12-19 15:47 ` Nicolas Ferre
2013-12-19 7:56 ` Mike Turquette
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).