diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2011-05-27 13:56:12 -0700 |
---|---|---|
committer | Kevin Hilman <khilman@ti.com> | 2011-06-06 16:11:55 -0700 |
commit | d52b31deffe1956ac62d0b81b915c9b52cffb814 (patch) | |
tree | ab1f636482534f060889bd789f07fc7690e99b28 /drivers | |
parent | 59c5f46fbe01a00eedf54a23789634438bb80603 (diff) | |
download | linux-3.10-d52b31deffe1956ac62d0b81b915c9b52cffb814.tar.gz linux-3.10-d52b31deffe1956ac62d0b81b915c9b52cffb814.tar.bz2 linux-3.10-d52b31deffe1956ac62d0b81b915c9b52cffb814.zip |
GPIO: OMAP: fix section mismatch warnings
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>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/gpio/gpio-omap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-omap.c b/drivers/gpio/gpio-omap.c index 6c51191da56..76709b03572 100644 --- a/drivers/gpio/gpio-omap.c +++ b/drivers/gpio/gpio-omap.c @@ -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; |