diff options
| -rw-r--r-- | drivers/extcon/extcon-adc-jack.c | 2 | ||||
| -rw-r--r-- | drivers/extcon/extcon-arizona.c | 2 | ||||
| -rw-r--r-- | drivers/extcon/extcon-gpio.c | 2 | ||||
| -rw-r--r-- | drivers/extcon/extcon-max77693.c | 2 | ||||
| -rw-r--r-- | drivers/extcon/extcon-max8997.c | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/drivers/extcon/extcon-adc-jack.c b/drivers/extcon/extcon-adc-jack.c index 84144e6708c7..eda2a1aa4adb 100644 --- a/drivers/extcon/extcon-adc-jack.c +++ b/drivers/extcon/extcon-adc-jack.c | |||
| @@ -188,7 +188,7 @@ static int adc_jack_remove(struct platform_device *pdev) | |||
| 188 | 188 | ||
| 189 | static struct platform_driver adc_jack_driver = { | 189 | static struct platform_driver adc_jack_driver = { |
| 190 | .probe = adc_jack_probe, | 190 | .probe = adc_jack_probe, |
| 191 | .remove = __devexit_p(adc_jack_remove), | 191 | .remove = adc_jack_remove, |
| 192 | .driver = { | 192 | .driver = { |
| 193 | .name = "adc-jack", | 193 | .name = "adc-jack", |
| 194 | .owner = THIS_MODULE, | 194 | .owner = THIS_MODULE, |
diff --git a/drivers/extcon/extcon-arizona.c b/drivers/extcon/extcon-arizona.c index 2473be9ac5de..f10f05d4ee9c 100644 --- a/drivers/extcon/extcon-arizona.c +++ b/drivers/extcon/extcon-arizona.c | |||
| @@ -544,7 +544,7 @@ static struct platform_driver arizona_extcon_driver = { | |||
| 544 | .owner = THIS_MODULE, | 544 | .owner = THIS_MODULE, |
| 545 | }, | 545 | }, |
| 546 | .probe = arizona_extcon_probe, | 546 | .probe = arizona_extcon_probe, |
| 547 | .remove = __devexit_p(arizona_extcon_remove), | 547 | .remove = arizona_extcon_remove, |
| 548 | }; | 548 | }; |
| 549 | 549 | ||
| 550 | module_platform_driver(arizona_extcon_driver); | 550 | module_platform_driver(arizona_extcon_driver); |
diff --git a/drivers/extcon/extcon-gpio.c b/drivers/extcon/extcon-gpio.c index e02219e5a3d8..1b14bfcdc176 100644 --- a/drivers/extcon/extcon-gpio.c +++ b/drivers/extcon/extcon-gpio.c | |||
| @@ -150,7 +150,7 @@ static int gpio_extcon_remove(struct platform_device *pdev) | |||
| 150 | 150 | ||
| 151 | static struct platform_driver gpio_extcon_driver = { | 151 | static struct platform_driver gpio_extcon_driver = { |
| 152 | .probe = gpio_extcon_probe, | 152 | .probe = gpio_extcon_probe, |
| 153 | .remove = __devexit_p(gpio_extcon_remove), | 153 | .remove = gpio_extcon_remove, |
| 154 | .driver = { | 154 | .driver = { |
| 155 | .name = "extcon-gpio", | 155 | .name = "extcon-gpio", |
| 156 | .owner = THIS_MODULE, | 156 | .owner = THIS_MODULE, |
diff --git a/drivers/extcon/extcon-max77693.c b/drivers/extcon/extcon-max77693.c index 437f573dc582..b656dfa401a6 100644 --- a/drivers/extcon/extcon-max77693.c +++ b/drivers/extcon/extcon-max77693.c | |||
| @@ -795,7 +795,7 @@ static struct platform_driver max77693_muic_driver = { | |||
| 795 | .owner = THIS_MODULE, | 795 | .owner = THIS_MODULE, |
| 796 | }, | 796 | }, |
| 797 | .probe = max77693_muic_probe, | 797 | .probe = max77693_muic_probe, |
| 798 | .remove = __devexit_p(max77693_muic_remove), | 798 | .remove = max77693_muic_remove, |
| 799 | }; | 799 | }; |
| 800 | 800 | ||
| 801 | module_platform_driver(max77693_muic_driver); | 801 | module_platform_driver(max77693_muic_driver); |
diff --git a/drivers/extcon/extcon-max8997.c b/drivers/extcon/extcon-max8997.c index 49812991c5e6..bad76f51161b 100644 --- a/drivers/extcon/extcon-max8997.c +++ b/drivers/extcon/extcon-max8997.c | |||
| @@ -531,7 +531,7 @@ static struct platform_driver max8997_muic_driver = { | |||
| 531 | .owner = THIS_MODULE, | 531 | .owner = THIS_MODULE, |
| 532 | }, | 532 | }, |
| 533 | .probe = max8997_muic_probe, | 533 | .probe = max8997_muic_probe, |
| 534 | .remove = __devexit_p(max8997_muic_remove), | 534 | .remove = max8997_muic_remove, |
| 535 | }; | 535 | }; |
| 536 | 536 | ||
| 537 | module_platform_driver(max8997_muic_driver); | 537 | module_platform_driver(max8997_muic_driver); |
