mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
ALSA: atiixp - Fix wrong time-out checks during ac-link reset
The time-out in snd_atiixp_aclink_reset() is wrongly checked, and it resulted in exiting from the loop at the first iteration. Reported-by: Amir Shamsuddin <AmirS2+alsa@gmail.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
966a7f0dc4
commit
7e79443ce2
@ -522,7 +522,7 @@ static int snd_atiixp_aclink_reset(struct atiixp *chip)
|
||||
atiixp_read(chip, CMD);
|
||||
mdelay(1);
|
||||
atiixp_update(chip, CMD, ATI_REG_CMD_AC_RESET, ATI_REG_CMD_AC_RESET);
|
||||
if (--timeout) {
|
||||
if (!--timeout) {
|
||||
snd_printk(KERN_ERR "atiixp: codec reset timeout\n");
|
||||
break;
|
||||
}
|
||||
|
@ -498,7 +498,7 @@ static int snd_atiixp_aclink_reset(struct atiixp_modem *chip)
|
||||
atiixp_read(chip, CMD);
|
||||
msleep(1);
|
||||
atiixp_update(chip, CMD, ATI_REG_CMD_AC_RESET, ATI_REG_CMD_AC_RESET);
|
||||
if (--timeout) {
|
||||
if (!--timeout) {
|
||||
snd_printk(KERN_ERR "atiixp-modem: codec reset timeout\n");
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user