diff options
author | Arnd Bergmann <arnd@arndb.de> | 2016-12-16 04:08:14 -0500 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2016-12-30 03:02:51 -0500 |
commit | abc8d5832fd142d565fbfca163348f33b08bc1fe (patch) | |
tree | 1c6aa51d52379a4d650d7cf87e82caca7cc35de9 /drivers/gpio | |
parent | 7ce7d89f48834cefece7804d38fc5d85382edf77 (diff) |
gpio: mxs: remove __init annotation
Building with an old toolchain, I ran into this warning:
WARNING: vmlinux.o(.text+0x63eef0): Section mismatch in reference
from the function mxs_gpio_probe() to the function
.init.text:mxs_gpio_init_gc()
Clearly the annotation is wrong, since the function is called from the
non-init probe, so let's remove it.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio')
-rw-r--r-- | drivers/gpio/gpio-mxs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-mxs.c b/drivers/gpio/gpio-mxs.c index 1e8fde8cb803..2292742eac8f 100644 --- a/drivers/gpio/gpio-mxs.c +++ b/drivers/gpio/gpio-mxs.c | |||
@@ -205,7 +205,7 @@ static int mxs_gpio_set_wake_irq(struct irq_data *d, unsigned int enable) | |||
205 | return 0; | 205 | return 0; |
206 | } | 206 | } |
207 | 207 | ||
208 | static int __init mxs_gpio_init_gc(struct mxs_gpio_port *port, int irq_base) | 208 | static int mxs_gpio_init_gc(struct mxs_gpio_port *port, int irq_base) |
209 | { | 209 | { |
210 | struct irq_chip_generic *gc; | 210 | struct irq_chip_generic *gc; |
211 | struct irq_chip_type *ct; | 211 | struct irq_chip_type *ct; |