diff options
Diffstat (limited to 'drivers/gpio/gpio-ml-ioh.c')
-rw-r--r-- | drivers/gpio/gpio-ml-ioh.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/gpio/gpio-ml-ioh.c b/drivers/gpio/gpio-ml-ioh.c index 6a29ee1847be..b73366523fae 100644 --- a/drivers/gpio/gpio-ml-ioh.c +++ b/drivers/gpio/gpio-ml-ioh.c | |||
@@ -385,7 +385,7 @@ static irqreturn_t ioh_gpio_handler(int irq, void *dev_id) | |||
385 | return ret; | 385 | return ret; |
386 | } | 386 | } |
387 | 387 | ||
388 | static __devinit void ioh_gpio_alloc_generic_chip(struct ioh_gpio *chip, | 388 | static void ioh_gpio_alloc_generic_chip(struct ioh_gpio *chip, |
389 | unsigned int irq_start, unsigned int num) | 389 | unsigned int irq_start, unsigned int num) |
390 | { | 390 | { |
391 | struct irq_chip_generic *gc; | 391 | struct irq_chip_generic *gc; |
@@ -406,7 +406,7 @@ static __devinit void ioh_gpio_alloc_generic_chip(struct ioh_gpio *chip, | |||
406 | IRQ_NOREQUEST | IRQ_NOPROBE, 0); | 406 | IRQ_NOREQUEST | IRQ_NOPROBE, 0); |
407 | } | 407 | } |
408 | 408 | ||
409 | static int __devinit ioh_gpio_probe(struct pci_dev *pdev, | 409 | static int ioh_gpio_probe(struct pci_dev *pdev, |
410 | const struct pci_device_id *id) | 410 | const struct pci_device_id *id) |
411 | { | 411 | { |
412 | int ret; | 412 | int ret; |
@@ -517,7 +517,7 @@ err_pci_enable: | |||
517 | return ret; | 517 | return ret; |
518 | } | 518 | } |
519 | 519 | ||
520 | static void __devexit ioh_gpio_remove(struct pci_dev *pdev) | 520 | static void ioh_gpio_remove(struct pci_dev *pdev) |
521 | { | 521 | { |
522 | int err; | 522 | int err; |
523 | int i; | 523 | int i; |
@@ -606,7 +606,7 @@ static struct pci_driver ioh_gpio_driver = { | |||
606 | .name = "ml_ioh_gpio", | 606 | .name = "ml_ioh_gpio", |
607 | .id_table = ioh_gpio_pcidev_id, | 607 | .id_table = ioh_gpio_pcidev_id, |
608 | .probe = ioh_gpio_probe, | 608 | .probe = ioh_gpio_probe, |
609 | .remove = __devexit_p(ioh_gpio_remove), | 609 | .remove = ioh_gpio_remove, |
610 | .suspend = ioh_gpio_suspend, | 610 | .suspend = ioh_gpio_suspend, |
611 | .resume = ioh_gpio_resume | 611 | .resume = ioh_gpio_resume |
612 | }; | 612 | }; |