public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] regulator: Move lp3971 regulator driver to subsys_initcall()
@ 2010-11-17  3:00 Axel Lin
  2010-11-17  8:12 ` Wolfram Sang
  2010-11-17 13:32 ` Mark Brown
  0 siblings, 2 replies; 5+ messages in thread
From: Axel Lin @ 2010-11-17  3:00 UTC (permalink / raw)
  To: linux-kernel; +Cc: Liam Girdwood, Mark Brown, Marek Szyprowski

Regulators need to be available early in init in order to allow them
to be available for consumers when requested.

Other regulator drivers are already moved to subsys_initcall(),
looks like only lp3971 is missing.

Signed-off-by: Axel Lin <axel.lin@gmail.com>
---
 drivers/regulator/lp3971.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/regulator/lp3971.c b/drivers/regulator/lp3971.c
index 0f22ef1..40520d9 100644
--- a/drivers/regulator/lp3971.c
+++ b/drivers/regulator/lp3971.c
@@ -554,7 +554,7 @@ static int __init lp3971_module_init(void)
 
 	return ret;
 }
-module_init(lp3971_module_init);
+subsys_initcall(lp3971_module_init);
 
 static void __exit lp3971_module_exit(void)
 {
-- 
1.7.2




^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2010-11-17 13:32 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-11-17  3:00 [PATCH] regulator: Move lp3971 regulator driver to subsys_initcall() Axel Lin
2010-11-17  8:12 ` Wolfram Sang
2010-11-17  8:21   ` Axel Lin
2010-11-17 13:32   ` Mark Brown
2010-11-17 13:32 ` Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox