Commit b22f5d94c432e97df8d85151fcf3da16cee75f04

Authored by Takashi Iwai
1 parent a259cb8eb7

sound: OSS: ad1848 - Fix another typo

Fix another typo of || and &&.

Reported-by: Jörg-Volker Peetz <jvpeetz@web.de>
Signed-off-by: Takashi Iwai <tiwai@suse.de>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -280,7 +280,7 @@
280 280 while (timeout > 0 && (ad_read(devc, 11) & 0x20))
281 281 timeout--;
282 282 if (ad_read(devc, 11) & 0x20)
283   - if ( (devc->model != MD_1845) || (devc->model != MD_1845_SSCAPE))
  283 + if ((devc->model != MD_1845) && (devc->model != MD_1845_SSCAPE))
284 284 printk(KERN_WARNING "ad1848: Auto calibration timed out(3).\n");
285 285 }
286 286