Commit 90f2d32c authored by David Brown's avatar David Brown Committed by Greg Kroah-Hartman

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: default avatarDavid Brown <davidb@codeaurora.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 3f7a73b5
...@@ -379,7 +379,7 @@ static int __init msm_ssbi_init(void) ...@@ -379,7 +379,7 @@ static int __init msm_ssbi_init(void)
{ {
return platform_driver_register(&msm_ssbi_driver); return platform_driver_register(&msm_ssbi_driver);
} }
postcore_initcall(msm_ssbi_init); module_init(msm_ssbi_init);
static void __exit msm_ssbi_exit(void) static void __exit msm_ssbi_exit(void)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment