diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2007-12-10 10:35:54 -0500 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-01-26 10:07:52 -0500 |
commit | cae0554126e0545f8fc37282db7a906df1ec5c3c (patch) | |
tree | df20d5690f213753a4367a6384b88db81c116a1c /arch/arm/mach-pxa | |
parent | 16f159b1fc4f227a25cc4792e3804353e4777ebe (diff) |
[ARM] pxa: initialise SSP earlier
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>
Diffstat (limited to 'arch/arm/mach-pxa')
-rw-r--r-- | arch/arm/mach-pxa/ssp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-pxa/ssp.c b/arch/arm/mach-pxa/ssp.c index b6d37fa7b85f..575b662200a7 100644 --- a/arch/arm/mach-pxa/ssp.c +++ b/arch/arm/mach-pxa/ssp.c | |||
@@ -524,7 +524,7 @@ static void __exit pxa_ssp_exit(void) | |||
524 | platform_driver_unregister(&pxa27x_ssp_driver); | 524 | platform_driver_unregister(&pxa27x_ssp_driver); |
525 | } | 525 | } |
526 | 526 | ||
527 | module_init(pxa_ssp_init); | 527 | arch_initcall(pxa_ssp_init); |
528 | module_exit(pxa_ssp_exit); | 528 | module_exit(pxa_ssp_exit); |
529 | 529 | ||
530 | EXPORT_SYMBOL(ssp_write_word); | 530 | EXPORT_SYMBOL(ssp_write_word); |