[PATCH] regulator: Move lp3971 regulator driver tosubsys_initcall()

From: Axel Lin
Date: Tue Nov 16 2010 - 21:56:40 EST


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@xxxxxxxxx>
---
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



--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/