diff options
author | Bill Pemberton | 2012-11-19 19:24:14 +0100 |
---|---|---|
committer | Greg Kroah-Hartman | 2012-11-28 20:39:59 +0100 |
commit | aeca8ad1f0613a76a8f5fed174810fab9bc424cf (patch) | |
tree | fe9218e1c79f934d0dab2e99b0f836287678dbc7 /drivers/gpio/gpio-da9052.c | |
parent | gpio: remove use of __devinit (diff) | |
download | kernel-qcow2-linux-aeca8ad1f0613a76a8f5fed174810fab9bc424cf.tar.gz kernel-qcow2-linux-aeca8ad1f0613a76a8f5fed174810fab9bc424cf.tar.xz kernel-qcow2-linux-aeca8ad1f0613a76a8f5fed174810fab9bc424cf.zip |
gpio: remove use of __devinitdata
CONFIG_HOTPLUG is going away as an option so __devinitdata is no
longer needed.
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Cc: Grant Likely <grant.likely@secretlab.ca>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/gpio/gpio-da9052.c')
-rw-r--r-- | drivers/gpio/gpio-da9052.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-da9052.c b/drivers/gpio/gpio-da9052.c index 5d2bc81d6f84..2139825c4d59 100644 --- a/drivers/gpio/gpio-da9052.c +++ b/drivers/gpio/gpio-da9052.c @@ -188,7 +188,7 @@ static int da9052_gpio_to_irq(struct gpio_chip *gc, u32 offset) return da9052->irq_base + DA9052_IRQ_GPI0 + offset; } -static struct gpio_chip reference_gp __devinitdata = { +static struct gpio_chip reference_gp = { .label = "da9052-gpio", .owner = THIS_MODULE, .get = da9052_gpio_get, |