diff options
author | Stephen Warren <swarren@nvidia.com> | 2011-02-23 10:41:29 -0700 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2011-02-23 14:00:11 -0800 |
commit | dc54c23bb0e29de1bcaa40dbeffbc6cac641fb22 (patch) | |
tree | e5393d0a018601d080254a3531e0b000819753ec /arch/arm/mach-tegra/dma.c | |
parent | 48e5114d6f4cade466b127c6aad09769a574b557 (diff) | |
download | linux-dc54c23bb0e29de1bcaa40dbeffbc6cac641fb22.tar.gz linux-dc54c23bb0e29de1bcaa40dbeffbc6cac641fb22.tar.bz2 linux-dc54c23bb0e29de1bcaa40dbeffbc6cac641fb22.zip |
ARM: Tegra: Make tegra_dma_init a postcore_initcall
The following commit makes the Tegra APB DMA engine fail to initialize
correctly: 0cf6230af909a86f81907455eca2a5c9b8f68fe6
ARM: tegra: Move tegra_common_init to tegra_init_early
The reason is that tegra_init_early_ calls tegra_dma_init which calls
request_threaded_irq, which fails since the IRQ hasn't yet been marked
valid; that only happens in tegra_init_irq, which gets called after
tegra_init_early.
This used to work OK, since tegra_init_early was tegra_common_init, which
got called after tegra_init_irq, basically from the beginning of
tegra_harmony_init.
Solve this by converting tegra_dma_init to a postcore_initcall. This makes
it execute late enough that IRQs are marked valid, and avoids having to
add it back to every machine's init function.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Colin Cross <ccross@android.com>
Diffstat (limited to 'arch/arm/mach-tegra/dma.c')
-rw-r--r-- | arch/arm/mach-tegra/dma.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-tegra/dma.c b/arch/arm/mach-tegra/dma.c index 2d720f2b6c75..bd4f62a613aa 100644 --- a/arch/arm/mach-tegra/dma.c +++ b/arch/arm/mach-tegra/dma.c @@ -743,6 +743,7 @@ fail: } return ret; } +postcore_initcall(tegra_dma_init); #ifdef CONFIG_PM static u32 apb_dma[5*TEGRA_SYSTEM_DMA_CH_NR + 3]; |