diff options
author | Linus Walleij <linus.walleij@stericsson.com> | 2010-09-06 05:02:12 -0400 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2010-09-09 00:50:10 -0400 |
commit | 25c8e03bdb769dfe2381f8b7942f05b0eb4bdf31 (patch) | |
tree | e75b237194b51c3df7101ca27e751c8fed828ffa | |
parent | 05f25abcf6043952fb2a2d98735dec58ba1fcadb (diff) |
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 <linus.walleij@stericsson.com>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
-rw-r--r-- | drivers/spi/amba-pl022.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
1983 | return amba_driver_register(&pl022_driver); | 1983 | return amba_driver_register(&pl022_driver); |
1984 | } | 1984 | } |
1985 | 1985 | ||
1986 | module_init(pl022_init); | 1986 | subsys_initcall(pl022_init); |
1987 | 1987 | ||
1988 | static void __exit pl022_exit(void) | 1988 | static void __exit pl022_exit(void) |
1989 | { | 1989 | { |