Commit 50b381b7 authored by Haojian Zhuang's avatar Haojian Zhuang Committed by Samuel Ortiz

mfd: 88pm860x: Fix section mismatch warning

WARNING: drivers/built-in.o(.data+0x1e3c8): Section mismatch in
reference from the variable bk_devs to the variable
.devinit.data:bk0_resources
The variable bk_devs references
the variable __devinitdata bk0_resources
If the reference is valid then annotate the
variable with __init* or __refdata (see linux/init.h) or name the
variable:
*driver, *_template, *_timer, *_sht, *_ops, *_probe, *_probe_one,
*_console

So add __devinitdata on bk_devs, led_devs & reg_devs.
Signed-off-by: default avatarHaojian Zhuang <haojian.zhuang@gmail.com>
Signed-off-by: default avatarSamuel Ortiz <sameo@linux.intel.com>
parent b079fa72
...@@ -158,7 +158,7 @@ static struct resource rtc_resources[] __devinitdata = { ...@@ -158,7 +158,7 @@ static struct resource rtc_resources[] __devinitdata = {
{PM8607_IRQ_RTC, PM8607_IRQ_RTC, "rtc", IORESOURCE_IRQ,}, {PM8607_IRQ_RTC, PM8607_IRQ_RTC, "rtc", IORESOURCE_IRQ,},
}; };
static struct mfd_cell bk_devs[] = { static struct mfd_cell bk_devs[] __devinitdata = {
{ {
.name = "88pm860x-backlight", .name = "88pm860x-backlight",
.id = 0, .id = 0,
...@@ -177,7 +177,7 @@ static struct mfd_cell bk_devs[] = { ...@@ -177,7 +177,7 @@ static struct mfd_cell bk_devs[] = {
}, },
}; };
static struct mfd_cell led_devs[] = { static struct mfd_cell led_devs[] __devinitdata = {
{ {
.name = "88pm860x-led", .name = "88pm860x-led",
.id = 0, .id = 0,
...@@ -211,7 +211,7 @@ static struct mfd_cell led_devs[] = { ...@@ -211,7 +211,7 @@ static struct mfd_cell led_devs[] = {
}, },
}; };
static struct mfd_cell reg_devs[] = { static struct mfd_cell reg_devs[] __devinitdata = {
{ {
.name = "88pm860x-regulator", .name = "88pm860x-regulator",
.id = 0, .id = 0,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment