summaryrefslogtreecommitdiffstats
path: root/sound/soc
diff options
context:
space:
mode:
authorPaul Mundt <lethal@linux-sh.org>2010-10-27 15:53:50 +0900
committerPaul Mundt <lethal@linux-sh.org>2010-10-27 15:53:50 +0900
commit48ccb2ceec6fb1d46d1bc92dadc602d4341a0149 (patch)
tree5242f572316c3a0efd56cfbb4539c4e753fa32f7 /sound/soc
parent1e5cefd01af079d8efadfde78c045be15e6c1b23 (diff)
downloadop-kernel-dev-48ccb2ceec6fb1d46d1bc92dadc602d4341a0149.zip
op-kernel-dev-48ccb2ceec6fb1d46d1bc92dadc602d4341a0149.tar.gz
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/soc')
-rw-r--r--sound/soc/sh/sh7760-ac97.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/sh/sh7760-ac97.c b/sound/soc/sh/sh7760-ac97.c
index b897f7b..f8e0ab8 100644
--- a/sound/soc/sh/sh7760-ac97.c
+++ b/sound/soc/sh/sh7760-ac97.c
@@ -52,8 +52,8 @@ static int __init sh7760_ac97_init(void)
unsigned short ipsel;
/* enable both AC97 controllers in pinmux reg */
- ipsel = ctrl_inw(IPSEL);
- ctrl_outw(ipsel | (3 << 10), IPSEL);
+ ipsel = __raw_readw(IPSEL);
+ __raw_writew(ipsel | (3 << 10), IPSEL);
ret = -ENOMEM;
sh7760_ac97_snd_device = platform_device_alloc("soc-audio", -1);
OpenPOWER on IntegriCloud