Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 110873
b: refs/heads/master
c: 6ddfa74
h: refs/heads/master
i:
  110871: 3466643
v: v3
  • Loading branch information
Rene Herman authored and Jaroslav Kysela committed Aug 6, 2008
1 parent d756077 commit 0713966
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 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: ebae22590dccd2b8495c97e85290f5e07af7dc62
refs/heads/master: 6ddfa7432adc24c7471abe9d338a78540d0d025b
12 changes: 7 additions & 5 deletions trunk/sound/isa/wss/wss_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -1168,11 +1168,13 @@ static int snd_ad1848_probe(struct snd_wss *chip)
ad1847 = 1;
break;
}
if (snd_wss_in(chip, CS4231_LEFT_INPUT) == 0xaa &&
rev == 0x45) {
spin_unlock_irqrestore(&chip->reg_lock, flags);
id = 1;
break;
if (rev == 0x45) {
rev = snd_wss_in(chip, CS4231_LEFT_INPUT);
if (rev == 0xaa || rev == 0x8a) {
spin_unlock_irqrestore(&chip->reg_lock, flags);
id = 1;
break;
}
}
spin_unlock_irqrestore(&chip->reg_lock, flags);
}
Expand Down

0 comments on commit 0713966

Please sign in to comment.