[PATCH -mm] mfd: Fix section mismatch in sm501.c

From: Rakib Mullick
Date: Fri Feb 13 2009 - 23:00:18 EST


This patch fixes the following warning, caused due to a call from
function sm501_register_gpio() to a function
sm501_gpio_register_chip() which is marked as __devinit function.

LD drivers/mfd/built-in.o
WARNING: drivers/mfd/built-in.o(.text+0x16ca): Section mismatch in
reference from the function sm501_register_gpio() to the function
.devinit.text:sm501_gpio_register_chip()
The function sm501_register_gpio() references
the function __devinit sm501_gpio_register_chip().
This is often because sm501_register_gpio lacks a __devinit
annotation or the annotation of sm501_gpio_register_chip is wrong.

WARNING: drivers/mfd/built-in.o(.text+0x1706): Section mismatch in
reference from the function sm501_register_gpio() to the function
.devinit.text:sm501_gpio_register_chip()
The function sm501_register_gpio() references
the function __devinit sm501_gpio_register_chip().
This is often because sm501_register_gpio lacks a __devinit
annotation or the annotation of sm501_gpio_register_chip is wrong.

Thanks.
---
Signed-off-by: Rakib Mullick <rakib.mullick@xxxxxxxxx>

--- linus/drivers/mfd/sm501.c 2009-02-13 11:26:48.000000000 +0600
+++ rakib/drivers/mfd/sm501.c 2009-02-13 23:34:06.317833808 +0600
@@ -1050,7 +1050,7 @@ static int __devinit sm501_gpio_register
return gpiochip_add(gchip);
}

-static int sm501_register_gpio(struct sm501_devdata *sm)
+static int __devinit sm501_register_gpio(struct sm501_devdata *sm)
{
struct sm501_gpio *gpio = &sm->gpio;
resource_size_t iobase = sm->io_res->start + SM501_GPIO;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/