Skip to content

Commit

Permalink
ssbi: Use regular init level
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
David Brown authored and gregkh committed Mar 25, 2013
1 parent 3f7a73b commit 90f2d32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/ssbi/ssbi.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down

0 comments on commit 90f2d32

Please sign in to comment.