From 833ced9521cba96bae3e58a534aaa324ad86cb6f Mon Sep 17 00:00:00 2001 From: Linus Walleij Date: Thu, 21 Oct 2010 20:32:27 +0200 Subject: [PATCH 14/23] DMAENGINE: move COH901318 to arch_initcall After moving the PL022 driver to subsys_initcall() due to the need of having stuff like regulators on the other end of the SPI link, I noticed that the COH901318 DMA engine will get probed before the DMA engine, so move it to an arch_initcall(). Signed-off-by: Linus Walleij --- drivers/dma/coh901318.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/dma/coh901318.c b/drivers/dma/coh901318.c index ae2b871..a665683 100644 --- a/drivers/dma/coh901318.c +++ b/drivers/dma/coh901318.c @@ -1610,7 +1610,7 @@ int __init coh901318_init(void) { return platform_driver_probe(&coh901318_driver, coh901318_probe); } -subsys_initcall(coh901318_init); +arch_initcall(coh901318_init); void __exit coh901318_exit(void) { -- 1.6.3.3