OSDN Git Service

gpio/omap: Fix section warning for omap_mpuio_alloc_gc()
authorTony Lindgren <tony@atomide.com>
Mon, 5 Mar 2012 23:32:38 +0000 (15:32 -0800)
committerGrant Likely <grant.likely@secretlab.ca>
Mon, 12 Mar 2012 17:44:46 +0000 (11:44 -0600)
Make omap_mpuio_alloc_gc() __devinit as omap_gpio_chip_init()
is __devinit. Otherwise we get:

WARNING: vmlinux.o(.devinit.text+0xa10): Section mismatch in reference
from the function omap_gpio_chip_init() to the function .init.text:omap_mpuio_alloc_gc()
The function __devinit omap_gpio_chip_init() references
a function __init omap_mpuio_alloc_gc().
If omap_mpuio_alloc_gc is only used by omap_gpio_chip_init then
annotate omap_mpuio_alloc_gc with a matching annotation.

Signed-off-by: Tony Lindgren <tony@atomide.com>
Acked-by: Kevin Hilman <khilman@ti.com>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
drivers/gpio/gpio-omap.c

index c48de8f..7cbad85 100644 (file)
@@ -973,7 +973,7 @@ static void omap_gpio_mod_init(struct gpio_bank *bank)
                _gpio_rmw(base, bank->regs->ctrl, 0, 1);
 }
 
-static __init void
+static __devinit void
 omap_mpuio_alloc_gc(struct gpio_bank *bank, unsigned int irq_start,
                    unsigned int num)
 {