diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-04-04 01:34:23 +0200 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-04-04 12:39:46 +0200 |
commit | 173f24d1ffe23f46b689159ee9d6b6aa402ff2e9 (patch) | |
tree | c9df69b80fdb76753bbb5a73693655e8664a74d8 | |
parent | regulator: max8860: Remove announcement on probe (diff) | |
download | linux-173f24d1ffe23f46b689159ee9d6b6aa402ff2e9.tar.xz linux-173f24d1ffe23f46b689159ee9d6b6aa402ff2e9.zip |
regulator: tps6524x: Use module_spi_driver()
Unusual to see a regulator driver not using subsys_initcall() but the
deferred probe support should make this viable.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
-rw-r--r-- | drivers/regulator/tps6524x-regulator.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/drivers/regulator/tps6524x-regulator.c b/drivers/regulator/tps6524x-regulator.c index 2a828a07386a..eabf0e601f65 100644 --- a/drivers/regulator/tps6524x-regulator.c +++ b/drivers/regulator/tps6524x-regulator.c @@ -661,17 +661,7 @@ static struct spi_driver pmic_driver = { }, }; -static int __init pmic_driver_init(void) -{ - return spi_register_driver(&pmic_driver); -} -module_init(pmic_driver_init); - -static void __exit pmic_driver_exit(void) -{ - spi_unregister_driver(&pmic_driver); -} -module_exit(pmic_driver_exit); +module_spi_driver(pmic_driver); MODULE_DESCRIPTION("TPS6524X PMIC Driver"); MODULE_AUTHOR("Cyril Chemparathy"); |