diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 13:24:14 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-28 14:39:59 -0500 |
commit | aeca8ad1f0613a76a8f5fed174810fab9bc424cf (patch) | |
tree | fe9218e1c79f934d0dab2e99b0f836287678dbc7 | |
parent | 3836309d93462bbf34851c078be6e5e77d888e3d (diff) |
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>
-rw-r--r-- | drivers/gpio/gpio-da9052.c | 2 | ||||
-rw-r--r-- | drivers/gpio/gpio-lpc32xx.c | 2 | ||||
-rw-r--r-- | drivers/gpio/gpio-mvebu.c | 2 | ||||
-rw-r--r-- | drivers/gpio/gpio-tegra.c | 2 | ||||
-rw-r--r-- | drivers/gpio/gpio-xilinx.c | 2 |
5 files changed, 5 insertions, 5 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) | |||
188 | return da9052->irq_base + DA9052_IRQ_GPI0 + offset; | 188 | return da9052->irq_base + DA9052_IRQ_GPI0 + offset; |
189 | } | 189 | } |
190 | 190 | ||
191 | static struct gpio_chip reference_gp __devinitdata = { | 191 | static struct gpio_chip reference_gp = { |
192 | .label = "da9052-gpio", | 192 | .label = "da9052-gpio", |
193 | .owner = THIS_MODULE, | 193 | .owner = THIS_MODULE, |
194 | .get = da9052_gpio_get, | 194 | .get = da9052_gpio_get, |
diff --git a/drivers/gpio/gpio-lpc32xx.c b/drivers/gpio/gpio-lpc32xx.c index 9f676f4629f1..36d7dee07b28 100644 --- a/drivers/gpio/gpio-lpc32xx.c +++ b/drivers/gpio/gpio-lpc32xx.c | |||
@@ -559,7 +559,7 @@ static int lpc32xx_gpio_probe(struct platform_device *pdev) | |||
559 | } | 559 | } |
560 | 560 | ||
561 | #ifdef CONFIG_OF | 561 | #ifdef CONFIG_OF |
562 | static struct of_device_id lpc32xx_gpio_of_match[] __devinitdata = { | 562 | static struct of_device_id lpc32xx_gpio_of_match[] = { |
563 | { .compatible = "nxp,lpc3220-gpio", }, | 563 | { .compatible = "nxp,lpc3220-gpio", }, |
564 | { }, | 564 | { }, |
565 | }; | 565 | }; |
diff --git a/drivers/gpio/gpio-mvebu.c b/drivers/gpio/gpio-mvebu.c index 88ad416c2bb0..f2a04ba0ca6c 100644 --- a/drivers/gpio/gpio-mvebu.c +++ b/drivers/gpio/gpio-mvebu.c | |||
@@ -459,7 +459,7 @@ static struct platform_device_id mvebu_gpio_ids[] = { | |||
459 | }; | 459 | }; |
460 | MODULE_DEVICE_TABLE(platform, mvebu_gpio_ids); | 460 | MODULE_DEVICE_TABLE(platform, mvebu_gpio_ids); |
461 | 461 | ||
462 | static struct of_device_id mvebu_gpio_of_match[] __devinitdata = { | 462 | static struct of_device_id mvebu_gpio_of_match[] = { |
463 | { | 463 | { |
464 | .compatible = "marvell,orion-gpio", | 464 | .compatible = "marvell,orion-gpio", |
465 | .data = (void*) MVEBU_GPIO_SOC_VARIANT_ORION, | 465 | .data = (void*) MVEBU_GPIO_SOC_VARIANT_ORION, |
diff --git a/drivers/gpio/gpio-tegra.c b/drivers/gpio/gpio-tegra.c index 45105a26d4bb..4cd3e1df05d8 100644 --- a/drivers/gpio/gpio-tegra.c +++ b/drivers/gpio/gpio-tegra.c | |||
@@ -365,7 +365,7 @@ static struct tegra_gpio_soc_config tegra30_gpio_config = { | |||
365 | .upper_offset = 0x80, | 365 | .upper_offset = 0x80, |
366 | }; | 366 | }; |
367 | 367 | ||
368 | static struct of_device_id tegra_gpio_of_match[] __devinitdata = { | 368 | static struct of_device_id tegra_gpio_of_match[] = { |
369 | { .compatible = "nvidia,tegra30-gpio", .data = &tegra30_gpio_config }, | 369 | { .compatible = "nvidia,tegra30-gpio", .data = &tegra30_gpio_config }, |
370 | { .compatible = "nvidia,tegra20-gpio", .data = &tegra20_gpio_config }, | 370 | { .compatible = "nvidia,tegra20-gpio", .data = &tegra20_gpio_config }, |
371 | { }, | 371 | { }, |
diff --git a/drivers/gpio/gpio-xilinx.c b/drivers/gpio/gpio-xilinx.c index 5a35138eeade..9ae7aa8ca48a 100644 --- a/drivers/gpio/gpio-xilinx.c +++ b/drivers/gpio/gpio-xilinx.c | |||
@@ -209,7 +209,7 @@ static int xgpio_of_probe(struct device_node *np) | |||
209 | return 0; | 209 | return 0; |
210 | } | 210 | } |
211 | 211 | ||
212 | static struct of_device_id xgpio_of_match[] __devinitdata = { | 212 | static struct of_device_id xgpio_of_match[] = { |
213 | { .compatible = "xlnx,xps-gpio-1.00.a", }, | 213 | { .compatible = "xlnx,xps-gpio-1.00.a", }, |
214 | { /* end of list */ }, | 214 | { /* end of list */ }, |
215 | }; | 215 | }; |