From: Axel Lin <axel.lin@gmail.com>
To: linux-kernel <linux-kernel@vger.kernel.org>
Cc: Liam Girdwood <lrg@slimlogic.co.uk>,
Mark Brown <broonie@opensource.wolfsonmicro.com>,
Marek Szyprowski <m.szyprowski@samsung.com>
Subject: [PATCH] regulator: Move lp3971 regulator driver to subsys_initcall()
Date: Wed, 17 Nov 2010 11:00:44 +0800 [thread overview]
Message-ID: <1289962844.8233.2.camel@mola> (raw)
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
next reply other threads:[~2010-11-17 2:56 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-11-17 3:00 Axel Lin [this message]
2010-11-17 8:12 ` [PATCH] regulator: Move lp3971 regulator driver to subsys_initcall() Wolfram Sang
2010-11-17 8:21 ` Axel Lin
2010-11-17 13:32 ` Mark Brown
2010-11-17 13:32 ` Mark Brown
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1289962844.8233.2.camel@mola \
--to=axel.lin@gmail.com \
--cc=broonie@opensource.wolfsonmicro.com \
--cc=linux-kernel@vger.kernel.org \
--cc=lrg@slimlogic.co.uk \
--cc=m.szyprowski@samsung.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.