diff options
author | Marek Vasut <marek.vasut@gmail.com> | 2010-10-10 03:55:43 +0200 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2010-10-29 00:30:27 +0200 |
commit | 7745cc8c3b977203c1b7483c09d05b58c8e88728 (patch) | |
tree | 48af931172d96de00f0ad16974f783e79add6b05 /drivers | |
parent | 2aa13b9e8096ab7f12c67f3a5b9a38b194a30ce9 (diff) | |
download | linux-stable-7745cc8c3b977203c1b7483c09d05b58c8e88728.tar.gz linux-stable-7745cc8c3b977203c1b7483c09d05b58c8e88728.tar.bz2 linux-stable-7745cc8c3b977203c1b7483c09d05b58c8e88728.zip |
mfd: Remove __devinitdata from tc6393xb_mmc_resources
This static struct resource tc6393xb_mmc_resources[] is used in resume function,
therefore the data can not be wiped after init.
Also, this causes a section mismatch.
Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
Acked-by: Ian Molton <ian@mnementh.co.uk>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | 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 ef6c42c8917a..1ea80d8ad915 100644 --- a/drivers/mfd/tc6393xb.c +++ b/drivers/mfd/tc6393xb.c @@ -155,7 +155,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, |