GPIO: OMAP: fix section mismatch warnings
authorRussell King <rmk+kernel@arm.linux.org.uk>
Fri, 27 May 2011 20:56:12 +0000 (13:56 -0700)
committerKevin Hilman <khilman@ti.com>
Mon, 6 Jun 2011 23:11:55 +0000 (16:11 -0700)
WARNING: arch/arm/plat-omap/built-in.o(.devinit.text+0x46c): Section mismatch in reference from the function omap_gpio_probe() to the function .init.text:omap_gpio_chip_init()
The function __devinit omap_gpio_probe() references
a function __init omap_gpio_chip_init().
If omap_gpio_chip_init is only used by omap_gpio_probe then
annotate omap_gpio_chip_init with a matching annotation.

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Kevin Hilman <khilman@ti.com>
drivers/gpio/gpio-omap.c

index 6c51191da567e1fba91e774573f08f087e90daee..76709b03572e98e947f0a30168fc59bedb4ea8cd 100644 (file)
@@ -1524,7 +1524,7 @@ static void omap_gpio_mod_init(struct gpio_bank *bank, int id)
        }
 }
 
-static void __init omap_gpio_chip_init(struct gpio_bank *bank)
+static void __devinit omap_gpio_chip_init(struct gpio_bank *bank)
 {
        int j;
        static int gpio;