diff options
Diffstat (limited to 'drivers/gpio/gpio-langwell.c')
-rw-r--r-- | drivers/gpio/gpio-langwell.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/gpio/gpio-langwell.c b/drivers/gpio/gpio-langwell.c index 202a99207b7d..e77b2b3e94af 100644 --- a/drivers/gpio/gpio-langwell.c +++ b/drivers/gpio/gpio-langwell.c | |||
@@ -332,7 +332,7 @@ static const struct dev_pm_ops lnw_gpio_pm_ops = { | |||
332 | .runtime_idle = lnw_gpio_runtime_idle, | 332 | .runtime_idle = lnw_gpio_runtime_idle, |
333 | }; | 333 | }; |
334 | 334 | ||
335 | static int __devinit lnw_gpio_probe(struct pci_dev *pdev, | 335 | static int lnw_gpio_probe(struct pci_dev *pdev, |
336 | const struct pci_device_id *id) | 336 | const struct pci_device_id *id) |
337 | { | 337 | { |
338 | void *base; | 338 | void *base; |
@@ -435,7 +435,7 @@ static struct pci_driver lnw_gpio_driver = { | |||
435 | }; | 435 | }; |
436 | 436 | ||
437 | 437 | ||
438 | static int __devinit wp_gpio_probe(struct platform_device *pdev) | 438 | static int wp_gpio_probe(struct platform_device *pdev) |
439 | { | 439 | { |
440 | struct lnw_gpio *lnw; | 440 | struct lnw_gpio *lnw; |
441 | struct gpio_chip *gc; | 441 | struct gpio_chip *gc; |
@@ -484,7 +484,7 @@ err_kmalloc: | |||
484 | return retval; | 484 | return retval; |
485 | } | 485 | } |
486 | 486 | ||
487 | static int __devexit wp_gpio_remove(struct platform_device *pdev) | 487 | static int wp_gpio_remove(struct platform_device *pdev) |
488 | { | 488 | { |
489 | struct lnw_gpio *lnw = platform_get_drvdata(pdev); | 489 | struct lnw_gpio *lnw = platform_get_drvdata(pdev); |
490 | int err; | 490 | int err; |
@@ -499,7 +499,7 @@ static int __devexit wp_gpio_remove(struct platform_device *pdev) | |||
499 | 499 | ||
500 | static struct platform_driver wp_gpio_driver = { | 500 | static struct platform_driver wp_gpio_driver = { |
501 | .probe = wp_gpio_probe, | 501 | .probe = wp_gpio_probe, |
502 | .remove = __devexit_p(wp_gpio_remove), | 502 | .remove = wp_gpio_remove, |
503 | .driver = { | 503 | .driver = { |
504 | .name = "wp_gpio", | 504 | .name = "wp_gpio", |
505 | .owner = THIS_MODULE, | 505 | .owner = THIS_MODULE, |