Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e1677ce4 authored by Håvard Skinnemoen's avatar Håvard Skinnemoen Committed by David Woodhouse
Browse files

avr32: move hsmc_init() to core_initcall



The board init code, typically running from postcore_initcall, may
need to set up SMC timings. We have to make sure the SMC driver is
ready before this happens.

Signed-off-by: default avatarHåvard Skinnemoen <haavard.skinnemoen@atmel.com>
Signed-off-by: default avatarDavid Woodhouse <dwmw2@infradead.org>
parent cc0c72e1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -278,4 +278,4 @@ static int __init hsmc_init(void)
{
	return platform_driver_register(&hsmc_driver);
}
arch_initcall(hsmc_init);
core_initcall(hsmc_init);