diff options
author | Linus Walleij <linus.walleij@stericsson.com> | 2011-05-18 14:18:57 +0200 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2011-05-19 16:56:26 +0530 |
commit | a0eb221a446f2f6c988430f0b0a13f74b7c2b799 (patch) | |
tree | 1acb53fd96021665712a83532b7df78dc77a3fed /drivers/dma/ste_dma40.c | |
parent | a7c57cf7d4327c41510f8cbf45b1b970e02c34f8 (diff) | |
download | op-kernel-dev-a0eb221a446f2f6c988430f0b0a13f74b7c2b799.zip op-kernel-dev-a0eb221a446f2f6c988430f0b0a13f74b7c2b799.tar.gz |
dmaengine: move link order
Move the dmaengine subsystem up early in the drivers Makefile so
DMA is made available early to all drivers, just like e.g.
regulators. Now even regulators can use DMA on the same initlevel.
As a result we can bump the ste_dma40 and coh901318 dmaengine
drivers down one initlevel to subsys_init().
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'drivers/dma/ste_dma40.c')
-rw-r--r-- | drivers/dma/ste_dma40.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/ste_dma40.c b/drivers/dma/ste_dma40.c index 65d2535..5d054bb 100644 --- a/drivers/dma/ste_dma40.c +++ b/drivers/dma/ste_dma40.c @@ -2962,4 +2962,4 @@ static int __init stedma40_init(void) { return platform_driver_probe(&d40_driver, d40_probe); } -arch_initcall(stedma40_init); +subsys_initcall(stedma40_init); |