Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 219594
b: refs/heads/master
c: 48ccb2c
h: refs/heads/master
v: v3
  • Loading branch information
Paul Mundt committed Oct 27, 2010
1 parent 6338a00 commit e60ca6e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1e5cefd01af079d8efadfde78c045be15e6c1b23
refs/heads/master: 48ccb2ceec6fb1d46d1bc92dadc602d4341a0149
2 changes: 1 addition & 1 deletion trunk/sound/sh/aica.c
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ static void spu_reset(void)
spu_memset(0, 0, 0x200000 / 4);
/* Put ARM7 in endless loop */
local_irq_save(flags);
ctrl_outl(0xea000002, SPU_MEMORY_BASE);
__raw_writel(0xea000002, SPU_MEMORY_BASE);
local_irq_restore(flags);
spu_enable();
}
Expand Down
4 changes: 2 additions & 2 deletions trunk/sound/soc/sh/sh7760-ac97.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit e60ca6e

Please sign in to comment.