summaryrefslogtreecommitdiffstats
path: root/firmware/pcm_playback.c
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2006-03-09 08:49:52 +0000
committerDave Chapman <dave@dchapman.com>2006-03-09 08:49:52 +0000
commit48e8e1d820e642c04a7069190baf48ee49fc65a0 (patch)
treef988debe9a0a96f9e584660145cc0f21dd0d575e /firmware/pcm_playback.c
parentfcde4fc8863b199ac5b3453b70b91c9ebe53e4e9 (diff)
downloadrockbox-48e8e1d820e642c04a7069190baf48ee49fc65a0.tar.gz
rockbox-48e8e1d820e642c04a7069190baf48ee49fc65a0.zip
iPod 3G: Enable I2S interrupts for the main processor, not the COP
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8971 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/pcm_playback.c')
-rw-r--r--firmware/pcm_playback.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/pcm_playback.c b/firmware/pcm_playback.c
index 0ae87f4310..8bd44c7f21 100644
--- a/firmware/pcm_playback.c
+++ b/firmware/pcm_playback.c
@@ -348,8 +348,8 @@ static void dma_start(const void *addr, size_t size)
outl(I2S_MASK, 0x60004024);
#else
/* setup I2S interrupt for FIQ */
- outl(inl(0xcf00103c) | DMA_OUT_MASK, 0xcf00103c);
- outl(DMA_OUT_MASK, 0xcf001034);
+ outl(inl(0xcf00102c) | DMA_OUT_MASK, 0xcf00102c);
+ outl(DMA_OUT_MASK, 0xcf001024);
#endif
/* Clear the FIQ disable bit in cpsr_c */