diff options
author | Paul Mundt <lethal@linux-sh.org> | 2010-10-27 02:53:50 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2010-10-27 02:53:50 -0400 |
commit | 48ccb2ceec6fb1d46d1bc92dadc602d4341a0149 (patch) | |
tree | 5242f572316c3a0efd56cfbb4539c4e753fa32f7 /sound/sh | |
parent | 1e5cefd01af079d8efadfde78c045be15e6c1b23 (diff) |
sound: sh: ctrl_in/outX to __raw_read/writeX conversion.
The ctrl_xxx routines are deprecated, switch over to the __raw_xxx
versions.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'sound/sh')
-rw-r--r-- | sound/sh/aica.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/sh/aica.c b/sound/sh/aica.c index a0df401ebb9f..94c6ea7fa7c2 100644 --- a/sound/sh/aica.c +++ b/sound/sh/aica.c | |||
@@ -188,7 +188,7 @@ static void spu_reset(void) | |||
188 | spu_memset(0, 0, 0x200000 / 4); | 188 | spu_memset(0, 0, 0x200000 / 4); |
189 | /* Put ARM7 in endless loop */ | 189 | /* Put ARM7 in endless loop */ |
190 | local_irq_save(flags); | 190 | local_irq_save(flags); |
191 | ctrl_outl(0xea000002, SPU_MEMORY_BASE); | 191 | __raw_writel(0xea000002, SPU_MEMORY_BASE); |
192 | local_irq_restore(flags); | 192 | local_irq_restore(flags); |
193 | spu_enable(); | 193 | spu_enable(); |
194 | } | 194 | } |