public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mfd/tc6393xb: don't use devinit data from non-init function
@ 2010-03-02 16:22 Uwe Kleine-König
  2010-10-19  7:19 ` Uwe Kleine-König
  0 siblings, 1 reply; 8+ messages in thread
From: Uwe Kleine-König @ 2010-03-02 16:22 UTC (permalink / raw)
  To: linux-kernel; +Cc: Ian Molton, Magnus Damm, Samuel Ortiz

tc6393xb_mmc_resources (which was marked __devinitdata) is used in
tc6393xb_mmc_enable() and tc6393xb_mmc_resume() which both are functions
living in .text.  This is not save with CONFIG_HOTPLUG=n.

This was introduced in

	64e8867 (mfd: tmio_mmc hardware abstraction for CNF area)

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Cc: Ian Molton <ian@mnementh.co.uk>
Cc: Magnus Damm <damm@opensource.se>
Cc: Samuel Ortiz <sameo@linux.intel.com>
---
 drivers/mfd/tc6393xb.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/mfd/tc6393xb.c b/drivers/mfd/tc6393xb.c
index 4bc5a08..b057d8d 100644
--- a/drivers/mfd/tc6393xb.c
+++ b/drivers/mfd/tc6393xb.c
@@ -154,7 +154,7 @@ static struct resource __devinitdata tc6393xb_nand_resources[] = {
 	},
 };
 
-static struct resource __devinitdata tc6393xb_mmc_resources[] = {
+static struct resource tc6393xb_mmc_resources[] = {
 	{
 		.start	= 0x800,
 		.end	= 0x9ff,
-- 
1.7.0


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2010-10-19 13:34 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-02 16:22 [PATCH] mfd/tc6393xb: don't use devinit data from non-init function Uwe Kleine-König
2010-10-19  7:19 ` Uwe Kleine-König
2010-10-19  7:44   ` Ian Molton
2010-10-19 10:31   ` Samuel Ortiz
2010-10-19 13:07     ` Uwe Kleine-König
2010-10-19 13:22       ` Samuel Ortiz
2010-10-19 13:33         ` Uwe Kleine-König
2010-10-19 13:34           ` Samuel Ortiz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox