* [PATCH 1/3] clk: tegra114: Fix incorrect placement of __initdata
@ 2013-08-08 4:25 Sachin Kamat
[not found] ` <1375935949-19557-1-git-send-email-sachin.kamat-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
0 siblings, 1 reply; 6+ messages in thread
From: Sachin Kamat @ 2013-08-08 4:25 UTC (permalink / raw)
To: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r
Cc: linux-tegra-u79uwXL29TY76Z2rM5mHXA,
mturquette-QSEj5FYQhm4dnm+yROfE0A, swarren-3lzwWm7+Weoh9ZMKESR00Q,
sachin.kamat-QSEj5FYQhm4dnm+yROfE0A
__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 <sachin.kamat-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
---
drivers/clk/tegra/clk-tegra114.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/clk/tegra/clk-tegra114.c b/drivers/clk/tegra/clk-tegra114.c
index f74ed19..66fa1d6 100644
--- a/drivers/clk/tegra/clk-tegra114.c
+++ b/drivers/clk/tegra/clk-tegra114.c
@@ -2182,7 +2182,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},
--
1.7.9.5
^ permalink raw reply related [flat|nested] 6+ messages in thread[parent not found: <1375935949-19557-1-git-send-email-sachin.kamat-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>]
* [PATCH 2/3] clk: tegra20: Fix incorrect placement of __initdata [not found] ` <1375935949-19557-1-git-send-email-sachin.kamat-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org> @ 2013-08-08 4:25 ` Sachin Kamat 2013-08-08 4:25 ` [PATCH 3/3] clk: tegra30: " Sachin Kamat 2013-08-08 18:16 ` [PATCH 1/3] clk: tegra114: " Stephen Warren 2 siblings, 0 replies; 6+ messages in thread From: Sachin Kamat @ 2013-08-08 4:25 UTC (permalink / raw) To: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r Cc: linux-tegra-u79uwXL29TY76Z2rM5mHXA, mturquette-QSEj5FYQhm4dnm+yROfE0A, swarren-3lzwWm7+Weoh9ZMKESR00Q, sachin.kamat-QSEj5FYQhm4dnm+yROfE0A __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 <sachin.kamat-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org> --- drivers/clk/tegra/clk-tegra20.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/clk/tegra/clk-tegra20.c b/drivers/clk/tegra/clk-tegra20.c index 759ca47..ebe94ce 100644 --- a/drivers/clk/tegra/clk-tegra20.c +++ b/drivers/clk/tegra/clk-tegra20.c @@ -1223,7 +1223,7 @@ static struct tegra_cpu_car_ops tegra20_cpu_car_ops = { #endif }; -static __initdata struct tegra_clk_init_table init_table[] = { +static struct tegra_clk_init_table init_table[] __initdata = { {pll_p, clk_max, 216000000, 1}, {pll_p_out1, clk_max, 28800000, 1}, {pll_p_out2, clk_max, 48000000, 1}, -- 1.7.9.5 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 3/3] clk: tegra30: Fix incorrect placement of __initdata [not found] ` <1375935949-19557-1-git-send-email-sachin.kamat-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org> 2013-08-08 4:25 ` [PATCH 2/3] clk: tegra20: " Sachin Kamat @ 2013-08-08 4:25 ` Sachin Kamat 2013-08-08 18:16 ` [PATCH 1/3] clk: tegra114: " Stephen Warren 2 siblings, 0 replies; 6+ messages in thread From: Sachin Kamat @ 2013-08-08 4:25 UTC (permalink / raw) To: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r Cc: linux-tegra-u79uwXL29TY76Z2rM5mHXA, mturquette-QSEj5FYQhm4dnm+yROfE0A, swarren-3lzwWm7+Weoh9ZMKESR00Q, sachin.kamat-QSEj5FYQhm4dnm+yROfE0A __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 <sachin.kamat-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org> --- drivers/clk/tegra/clk-tegra30.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/clk/tegra/clk-tegra30.c b/drivers/clk/tegra/clk-tegra30.c index e2c6ca0..ab35040 100644 --- a/drivers/clk/tegra/clk-tegra30.c +++ b/drivers/clk/tegra/clk-tegra30.c @@ -1901,7 +1901,7 @@ static struct tegra_cpu_car_ops tegra30_cpu_car_ops = { #endif }; -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}, -- 1.7.9.5 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH 1/3] clk: tegra114: Fix incorrect placement of __initdata [not found] ` <1375935949-19557-1-git-send-email-sachin.kamat-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org> 2013-08-08 4:25 ` [PATCH 2/3] clk: tegra20: " Sachin Kamat 2013-08-08 4:25 ` [PATCH 3/3] clk: tegra30: " Sachin Kamat @ 2013-08-08 18:16 ` Stephen Warren [not found] ` <5203E097.1040502-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org> 2 siblings, 1 reply; 6+ messages in thread From: Stephen Warren @ 2013-08-08 18:16 UTC (permalink / raw) To: Sachin Kamat, mturquette-QSEj5FYQhm4dnm+yROfE0A Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, linux-tegra-u79uwXL29TY76Z2rM5mHXA On 08/07/2013 10:25 PM, Sachin Kamat wrote: > __initdata should be placed between the variable name and equal > sign for the variable to be placed in the intended section. The series, Acked-by: Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> Patch 1, Tested-by: Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> Mike, I assume you'll take these through the clock tree. ^ permalink raw reply [flat|nested] 6+ messages in thread
[parent not found: <5203E097.1040502-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>]
* Re: [PATCH 1/3] clk: tegra114: Fix incorrect placement of __initdata [not found] ` <5203E097.1040502-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org> @ 2013-08-08 22:32 ` Mike Turquette 2013-08-09 5:32 ` Sachin Kamat 1 sibling, 0 replies; 6+ messages in thread From: Mike Turquette @ 2013-08-08 22:32 UTC (permalink / raw) To: Stephen Warren, Sachin Kamat Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, linux-tegra-u79uwXL29TY76Z2rM5mHXA Quoting Stephen Warren (2013-08-08 11:16:55) > On 08/07/2013 10:25 PM, Sachin Kamat wrote: > > __initdata should be placed between the variable name and equal > > sign for the variable to be placed in the intended section. > > The series, > Acked-by: Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> > > Patch 1, > Tested-by: Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> > > Mike, I assume you'll take these through the clock tree. Done. Regards, Mike ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 1/3] clk: tegra114: Fix incorrect placement of __initdata [not found] ` <5203E097.1040502-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org> 2013-08-08 22:32 ` Mike Turquette @ 2013-08-09 5:32 ` Sachin Kamat 1 sibling, 0 replies; 6+ messages in thread From: Sachin Kamat @ 2013-08-09 5:32 UTC (permalink / raw) To: Stephen Warren Cc: mturquette-QSEj5FYQhm4dnm+yROfE0A, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, linux-tegra-u79uwXL29TY76Z2rM5mHXA On 8 August 2013 23:46, Stephen Warren <swarren-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org> wrote: > On 08/07/2013 10:25 PM, Sachin Kamat wrote: >> __initdata should be placed between the variable name and equal >> sign for the variable to be placed in the intended section. > > The series, > Acked-by: Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> > > Patch 1, > Tested-by: Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> Thanks Stephen. -- With warm regards, Sachin ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2013-08-09 5:32 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-08 4:25 [PATCH 1/3] clk: tegra114: Fix incorrect placement of __initdata Sachin Kamat
[not found] ` <1375935949-19557-1-git-send-email-sachin.kamat-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2013-08-08 4:25 ` [PATCH 2/3] clk: tegra20: " Sachin Kamat
2013-08-08 4:25 ` [PATCH 3/3] clk: tegra30: " Sachin Kamat
2013-08-08 18:16 ` [PATCH 1/3] clk: tegra114: " Stephen Warren
[not found] ` <5203E097.1040502-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>
2013-08-08 22:32 ` Mike Turquette
2013-08-09 5:32 ` Sachin Kamat
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox