diff options
author | Linus Walleij <linus.walleij@stericsson.com> | 2010-10-21 21:04:38 +0200 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2010-10-22 11:08:38 -0700 |
commit | 964dc256bb91e990277010a3f6dc66daa130be8b (patch) | |
tree | 9908fa6c07c9feefa9635f1b66c9e2365aeea83e /drivers/dma/coh901318.c | |
parent | 8267f16e8b67ea272f37f7072933dc0d3839693d (diff) |
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 <linus.walleij@stericsson.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'drivers/dma/coh901318.c')
-rw-r--r-- | 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 557e2272e5b3..f79fc26d930d 100644 --- a/drivers/dma/coh901318.c +++ b/drivers/dma/coh901318.c @@ -1609,7 +1609,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) { |