diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 13:20:42 -0500 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-11-19 20:31:19 -0500 |
commit | 5eb9f2b96381ac3fa4a5910c37213c1cb62e9c65 (patch) | |
tree | ff259bd83e3dedb6d6f74f7ad53ce0063993cd84 /drivers/regulator/wm831x-ldo.c | |
parent | f86221d2b9ce943753bbc2d2f79d12e9af1c4790 (diff) |
regulator: remove use of __devexit_p
CONFIG_HOTPLUG is going away as an option so __devexit_p is no longer
needed.
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'drivers/regulator/wm831x-ldo.c')
-rw-r--r-- | drivers/regulator/wm831x-ldo.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/regulator/wm831x-ldo.c b/drivers/regulator/wm831x-ldo.c index c2dc03993dc7..2df06008cf51 100644 --- a/drivers/regulator/wm831x-ldo.c +++ b/drivers/regulator/wm831x-ldo.c | |||
@@ -349,7 +349,7 @@ static __devexit int wm831x_gp_ldo_remove(struct platform_device *pdev) | |||
349 | 349 | ||
350 | static struct platform_driver wm831x_gp_ldo_driver = { | 350 | static struct platform_driver wm831x_gp_ldo_driver = { |
351 | .probe = wm831x_gp_ldo_probe, | 351 | .probe = wm831x_gp_ldo_probe, |
352 | .remove = __devexit_p(wm831x_gp_ldo_remove), | 352 | .remove = wm831x_gp_ldo_remove, |
353 | .driver = { | 353 | .driver = { |
354 | .name = "wm831x-ldo", | 354 | .name = "wm831x-ldo", |
355 | .owner = THIS_MODULE, | 355 | .owner = THIS_MODULE, |
@@ -603,7 +603,7 @@ static __devexit int wm831x_aldo_remove(struct platform_device *pdev) | |||
603 | 603 | ||
604 | static struct platform_driver wm831x_aldo_driver = { | 604 | static struct platform_driver wm831x_aldo_driver = { |
605 | .probe = wm831x_aldo_probe, | 605 | .probe = wm831x_aldo_probe, |
606 | .remove = __devexit_p(wm831x_aldo_remove), | 606 | .remove = wm831x_aldo_remove, |
607 | .driver = { | 607 | .driver = { |
608 | .name = "wm831x-aldo", | 608 | .name = "wm831x-aldo", |
609 | .owner = THIS_MODULE, | 609 | .owner = THIS_MODULE, |
@@ -748,7 +748,7 @@ static __devexit int wm831x_alive_ldo_remove(struct platform_device *pdev) | |||
748 | 748 | ||
749 | static struct platform_driver wm831x_alive_ldo_driver = { | 749 | static struct platform_driver wm831x_alive_ldo_driver = { |
750 | .probe = wm831x_alive_ldo_probe, | 750 | .probe = wm831x_alive_ldo_probe, |
751 | .remove = __devexit_p(wm831x_alive_ldo_remove), | 751 | .remove = wm831x_alive_ldo_remove, |
752 | .driver = { | 752 | .driver = { |
753 | .name = "wm831x-alive-ldo", | 753 | .name = "wm831x-alive-ldo", |
754 | .owner = THIS_MODULE, | 754 | .owner = THIS_MODULE, |