diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 13:20:42 -0500 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-11-20 10:31:19 +0900 |
commit | 5eb9f2b96381ac3fa4a5910c37213c1cb62e9c65 (patch) | |
tree | ff259bd83e3dedb6d6f74f7ad53ce0063993cd84 /drivers/regulator/lp8788-buck.c | |
parent | f86221d2b9ce943753bbc2d2f79d12e9af1c4790 (diff) | |
download | op-kernel-dev-5eb9f2b96381ac3fa4a5910c37213c1cb62e9c65.zip op-kernel-dev-5eb9f2b96381ac3fa4a5910c37213c1cb62e9c65.tar.gz |
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/lp8788-buck.c')
-rw-r--r-- | drivers/regulator/lp8788-buck.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/lp8788-buck.c b/drivers/regulator/lp8788-buck.c index ba3e0aa..35643d2 100644 --- a/drivers/regulator/lp8788-buck.c +++ b/drivers/regulator/lp8788-buck.c @@ -554,7 +554,7 @@ static int __devexit lp8788_buck_remove(struct platform_device *pdev) static struct platform_driver lp8788_buck_driver = { .probe = lp8788_buck_probe, - .remove = __devexit_p(lp8788_buck_remove), + .remove = lp8788_buck_remove, .driver = { .name = LP8788_DEV_BUCK, .owner = THIS_MODULE, |