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-dcdc.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-dcdc.c')
-rw-r--r-- | drivers/regulator/wm831x-dcdc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/regulator/wm831x-dcdc.c b/drivers/regulator/wm831x-dcdc.c index 782c228a19bd..16d7ebd88016 100644 --- a/drivers/regulator/wm831x-dcdc.c +++ b/drivers/regulator/wm831x-dcdc.c | |||
@@ -582,7 +582,7 @@ static __devexit int wm831x_buckv_remove(struct platform_device *pdev) | |||
582 | 582 | ||
583 | static struct platform_driver wm831x_buckv_driver = { | 583 | static struct platform_driver wm831x_buckv_driver = { |
584 | .probe = wm831x_buckv_probe, | 584 | .probe = wm831x_buckv_probe, |
585 | .remove = __devexit_p(wm831x_buckv_remove), | 585 | .remove = wm831x_buckv_remove, |
586 | .driver = { | 586 | .driver = { |
587 | .name = "wm831x-buckv", | 587 | .name = "wm831x-buckv", |
588 | .owner = THIS_MODULE, | 588 | .owner = THIS_MODULE, |
@@ -725,7 +725,7 @@ static __devexit int wm831x_buckp_remove(struct platform_device *pdev) | |||
725 | 725 | ||
726 | static struct platform_driver wm831x_buckp_driver = { | 726 | static struct platform_driver wm831x_buckp_driver = { |
727 | .probe = wm831x_buckp_probe, | 727 | .probe = wm831x_buckp_probe, |
728 | .remove = __devexit_p(wm831x_buckp_remove), | 728 | .remove = wm831x_buckp_remove, |
729 | .driver = { | 729 | .driver = { |
730 | .name = "wm831x-buckp", | 730 | .name = "wm831x-buckp", |
731 | .owner = THIS_MODULE, | 731 | .owner = THIS_MODULE, |
@@ -860,7 +860,7 @@ static __devexit int wm831x_boostp_remove(struct platform_device *pdev) | |||
860 | 860 | ||
861 | static struct platform_driver wm831x_boostp_driver = { | 861 | static struct platform_driver wm831x_boostp_driver = { |
862 | .probe = wm831x_boostp_probe, | 862 | .probe = wm831x_boostp_probe, |
863 | .remove = __devexit_p(wm831x_boostp_remove), | 863 | .remove = wm831x_boostp_remove, |
864 | .driver = { | 864 | .driver = { |
865 | .name = "wm831x-boostp", | 865 | .name = "wm831x-boostp", |
866 | .owner = THIS_MODULE, | 866 | .owner = THIS_MODULE, |
@@ -948,7 +948,7 @@ static __devexit int wm831x_epe_remove(struct platform_device *pdev) | |||
948 | 948 | ||
949 | static struct platform_driver wm831x_epe_driver = { | 949 | static struct platform_driver wm831x_epe_driver = { |
950 | .probe = wm831x_epe_probe, | 950 | .probe = wm831x_epe_probe, |
951 | .remove = __devexit_p(wm831x_epe_remove), | 951 | .remove = wm831x_epe_remove, |
952 | .driver = { | 952 | .driver = { |
953 | .name = "wm831x-epe", | 953 | .name = "wm831x-epe", |
954 | .owner = THIS_MODULE, | 954 | .owner = THIS_MODULE, |