summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Brown2013-03-12 19:41:52 +0100
committerGreg Kroah-Hartman2013-03-25 18:39:40 +0100
commit90f2d32ca5ca4a7f6d4eb509b81a9a802eb62905 (patch)
treea3e64420a5485c19042f0e53b7d3b7aa226953ab
parentssbi: Comment the use of udelay() (diff)
downloadkernel-qcow2-linux-90f2d32ca5ca4a7f6d4eb509b81a9a802eb62905.tar.gz
kernel-qcow2-linux-90f2d32ca5ca4a7f6d4eb509b81a9a802eb62905.tar.xz
kernel-qcow2-linux-90f2d32ca5ca4a7f6d4eb509b81a9a802eb62905.zip
ssbi: Use regular init level
With device tree, and deferred probe, it is no longer necessary to make sure that the ssbi bus driver is initialized very early. Restore to a regular module_init(). Signed-off-by: David Brown <davidb@codeaurora.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/ssbi/ssbi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ssbi/ssbi.c b/drivers/ssbi/ssbi.c
index 7ae892590c75..6878e550fde6 100644
--- a/drivers/ssbi/ssbi.c
+++ b/drivers/ssbi/ssbi.c
@@ -379,7 +379,7 @@ static int __init msm_ssbi_init(void)
{
return platform_driver_register(&msm_ssbi_driver);
}
-postcore_initcall(msm_ssbi_init);
+module_init(msm_ssbi_init);
static void __exit msm_ssbi_exit(void)
{