Skip to content

Commit

Permalink
[ARM] pxa: initialise SSP earlier
Browse files Browse the repository at this point in the history
Initialise the SSP driver at arch_initcall() time, so it's available
for other drivers to use it.

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Russell King authored and Russell King committed Jan 26, 2008
1 parent 16f159b commit cae0554
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/mach-pxa/ssp.c
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ static void __exit pxa_ssp_exit(void)
platform_driver_unregister(&pxa27x_ssp_driver);
}

module_init(pxa_ssp_init);
arch_initcall(pxa_ssp_init);
module_exit(pxa_ssp_exit);

EXPORT_SYMBOL(ssp_write_word);
Expand Down

0 comments on commit cae0554

Please sign in to comment.