From: Linus Walleij Date: Mon, 6 Sep 2010 09:02:12 +0000 (+0200) Subject: spi/pl022: move probe call to subsys_initcall() X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=25c8e03bdb769dfe2381f8b7942f05b0eb4bdf31;p=linux-beck.git spi/pl022: move probe call to subsys_initcall() The PL022 SPI bus is sometimes used for early stuff like regulators that need to be present at module_init() time, so we move this to a subsys_initcall(). Signed-off-by: Linus Walleij Signed-off-by: Grant Likely --- diff --git a/drivers/spi/amba-pl022.c b/drivers/spi/amba-pl022.c index 80613abe961d..4c37c4e28647 100644 --- a/drivers/spi/amba-pl022.c +++ b/drivers/spi/amba-pl022.c @@ -1983,7 +1983,7 @@ static int __init pl022_init(void) return amba_driver_register(&pl022_driver); } -module_init(pl022_init); +subsys_initcall(pl022_init); static void __exit pl022_exit(void) {