diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-06-15 09:27:37 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-06-15 09:27:37 -0700 |
commit | d3bf80bff13597004b5724ee4549cd68eb0badf0 (patch) | |
tree | 67f0a50e3135acd63348882d8ef836b498450f5f /drivers/regulator/da903x.c | |
parent | 9c7cb99a8202452d3e0440a5505c5c6d262771d9 (diff) | |
parent | c8f1e5025ca2fa8e6e037451f3d271e66745a19b (diff) | |
download | kernel_samsung_smdk4412-d3bf80bff13597004b5724ee4549cd68eb0badf0.tar.gz kernel_samsung_smdk4412-d3bf80bff13597004b5724ee4549cd68eb0badf0.tar.bz2 kernel_samsung_smdk4412-d3bf80bff13597004b5724ee4549cd68eb0badf0.zip |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/lrg/voltage-2.6
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/lrg/voltage-2.6:
regulator/max1586: fix V3 gain calculation integer overflow
regulator/max1586: support increased V3 voltage range
regulator: lp3971 - fix driver link error when built-in.
LP3971 PMIC regulator driver (updated and combined version)
regulator: remove driver_data direct access of struct device
regulator: Set MODULE_ALIAS for regulator drivers
regulator: Support list_voltage for fixed voltage regulator
regulator: Move regulator drivers to subsys_initcall()
regulator: build fix for powerpc - renamed show_state
regulator: add userspace-consumer driver
Maxim 1586 regulator driver
Diffstat (limited to 'drivers/regulator/da903x.c')
-rw-r--r-- | drivers/regulator/da903x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/da903x.c b/drivers/regulator/da903x.c index c6628f5a0af..b8b89ef10a8 100644 --- a/drivers/regulator/da903x.c +++ b/drivers/regulator/da903x.c @@ -504,7 +504,7 @@ static int __init da903x_regulator_init(void) { return platform_driver_register(&da903x_regulator_driver); } -module_init(da903x_regulator_init); +subsys_initcall(da903x_regulator_init); static void __exit da903x_regulator_exit(void) { |