diff options
| -rw-r--r-- | drivers/gpio/gpio-pxa.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-pxa.c b/drivers/gpio/gpio-pxa.c index 9cc108d2b770..8325f580c0f1 100644 --- a/drivers/gpio/gpio-pxa.c +++ b/drivers/gpio/gpio-pxa.c | |||
| @@ -642,7 +642,12 @@ static struct platform_driver pxa_gpio_driver = { | |||
| 642 | .of_match_table = of_match_ptr(pxa_gpio_dt_ids), | 642 | .of_match_table = of_match_ptr(pxa_gpio_dt_ids), |
| 643 | }, | 643 | }, |
| 644 | }; | 644 | }; |
| 645 | module_platform_driver(pxa_gpio_driver); | 645 | |
| 646 | static int __init pxa_gpio_init(void) | ||
| 647 | { | ||
| 648 | return platform_driver_register(&pxa_gpio_driver); | ||
| 649 | } | ||
| 650 | postcore_initcall(pxa_gpio_init); | ||
| 646 | 651 | ||
| 647 | #ifdef CONFIG_PM | 652 | #ifdef CONFIG_PM |
| 648 | static int pxa_gpio_suspend(void) | 653 | static int pxa_gpio_suspend(void) |
