diff options
author | Adrian McMenamin <adrian@mcmen.demon.co.uk> | 2007-07-24 13:30:55 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2007-07-24 13:30:55 +0900 |
commit | eb695dbf00d572a770358305dae4de2a0680db8f (patch) | |
tree | 7039762e190ace8af58bb62f6645bee0a2f71221 /include/asm-sh | |
parent | 8cf1a74305688c85fc8d23ab7432a0c447ee6413 (diff) | |
download | op-kernel-dev-eb695dbf00d572a770358305dae4de2a0680db8f.zip op-kernel-dev-eb695dbf00d572a770358305dae4de2a0680db8f.tar.gz |
sh: Fix Dreamcast DMA issues.
The current SH DMA API is somewhat broken, not correctly matching
virtual channel to the correct SH DMAC. This wasn't noticeable when
using g2 DMA for the sound driver - one channel 0 is as good as any
other! - but caused the pvr2 driver to fail.
This patch fixes the pvr2 problem and consequently fixes the sound
driver to ensure it continues to function.
Signed-off by: Adrian McMenamin <adrian@mcmen.demon.co.uk>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'include/asm-sh')
-rw-r--r-- | include/asm-sh/dma.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/asm-sh/dma.h b/include/asm-sh/dma.h index 6034d4a..4c75b70 100644 --- a/include/asm-sh/dma.h +++ b/include/asm-sh/dma.h @@ -111,6 +111,7 @@ struct dma_info { struct list_head list; int first_channel_nr; + int first_vchannel_nr; }; struct dma_chan_caps { |