summaryrefslogtreecommitdiffstats
path: root/drivers/regulator/wm8994-regulator.c
diff options
context:
space:
mode:
authorMark Brown2013-04-04 13:08:08 +0200
committerMark Brown2013-04-05 11:44:23 +0200
commit0565021655dd0e4dd0f26ab4c0273e88a6ddc666 (patch)
tree580bd6c0eacef9821062f64c9c1364a3f3752359 /drivers/regulator/wm8994-regulator.c
parentLinux 3.9-rc5 (diff)
downloadkernel-qcow2-linux-0565021655dd0e4dd0f26ab4c0273e88a6ddc666.tar.gz
kernel-qcow2-linux-0565021655dd0e4dd0f26ab4c0273e88a6ddc666.tar.xz
kernel-qcow2-linux-0565021655dd0e4dd0f26ab4c0273e88a6ddc666.zip
regulator: wm8994: Convert to module_platform_driver()
The regulators can only be used to supply the CODEC so we don't need to worry about users that still need fudges for init ordering issues. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'drivers/regulator/wm8994-regulator.c')
-rw-r--r--drivers/regulator/wm8994-regulator.c18
1 files changed, 1 insertions, 17 deletions
diff --git a/drivers/regulator/wm8994-regulator.c b/drivers/regulator/wm8994-regulator.c
index 6ff872342648..5115881fac42 100644
--- a/drivers/regulator/wm8994-regulator.c
+++ b/drivers/regulator/wm8994-regulator.c
@@ -162,23 +162,7 @@ static struct platform_driver wm8994_ldo_driver = {
},
};
-static int __init wm8994_ldo_init(void)
-{
- int ret;
-
- ret = platform_driver_register(&wm8994_ldo_driver);
- if (ret != 0)
- pr_err("Failed to register Wm8994 GP LDO driver: %d\n", ret);
-
- return ret;
-}
-subsys_initcall(wm8994_ldo_init);
-
-static void __exit wm8994_ldo_exit(void)
-{
- platform_driver_unregister(&wm8994_ldo_driver);
-}
-module_exit(wm8994_ldo_exit);
+module_platform_driver(wm8994_ldo_driver);
/* Module information */
MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");