Skip to content

Commit

Permalink
[ARM] 4527/1: pxa: fix pxa27x ac97 cold reset in ASoC due to CKEN change
Browse files Browse the repository at this point in the history
due to CKEN_xxx definition and pxa_set_cken() change,  the pxa27x
ac97 cold reset is broken in ASoC, fixed to use bit index instead
of bit mask

Signed-off-by: eric miao <eric.y.miao@gmail.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Eric Miao authored and Russell King committed Jul 28, 2007
1 parent 03e5386 commit 0a9c2df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sound/soc/pxa/pxa2xx-ac97.c
Original file line number Diff line number Diff line change
Expand Up @@ -160,9 +160,9 @@ static void pxa2xx_ac97_cold_reset(struct snd_ac97 *ac97)
gsr_bits = 0;
#ifdef CONFIG_PXA27x
/* PXA27x Developers Manual section 13.5.2.2.1 */
pxa_set_cken(1 << 31, 1);
pxa_set_cken(31, 1);
udelay(5);
pxa_set_cken(1 << 31, 0);
pxa_set_cken(31, 0);
GCR = GCR_COLD_RST;
udelay(50);
#else
Expand Down

0 comments on commit 0a9c2df

Please sign in to comment.