Commit 51c80cb6 authored by Adrian Bunk's avatar Adrian Bunk Committed by Jaroslav Kysela

[ALSA] au88x0_synth.c bugfix

This patch fixes the code in vortex_wt_SetFrequency() to what seems to
have been intended.
Signed-off-by: default avatarAdrian Bunk <bunk@kernel.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
Signed-off-by: default avatarJaroslav Kysela <perex@suse.cz>
parent 3304cd36
...@@ -370,7 +370,7 @@ static void vortex_wt_SetFrequency(vortex_t * vortex, int wt, unsigned int sr) ...@@ -370,7 +370,7 @@ static void vortex_wt_SetFrequency(vortex_t * vortex, int wt, unsigned int sr)
while ((edx & 0x80000000) == 0) { while ((edx & 0x80000000) == 0) {
edx <<= 1; edx <<= 1;
eax--; eax--;
if (eax == 0) ; if (eax == 0)
break; break;
} }
if (eax) if (eax)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment