diff options
author | Takashi Iwai <tiwai@suse.de> | 2009-02-17 02:02:16 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2009-02-17 02:02:16 -0500 |
commit | b22f5d94c432e97df8d85151fcf3da16cee75f04 (patch) | |
tree | 1e67ebb07fc003f79ce53a8d1bc01df39d0adb1d /sound/oss | |
parent | a259cb8eb784352ee9ce46a4fc6cd94fc2fbc68d (diff) |
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>
Diffstat (limited to 'sound/oss')
-rw-r--r-- | sound/oss/ad1848.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/oss/ad1848.c b/sound/oss/ad1848.c index a5b83568bdc8..d12bd98a37ba 100644 --- a/sound/oss/ad1848.c +++ b/sound/oss/ad1848.c | |||
@@ -280,7 +280,7 @@ static void wait_for_calibration(ad1848_info * devc) | |||
280 | while (timeout > 0 && (ad_read(devc, 11) & 0x20)) | 280 | while (timeout > 0 && (ad_read(devc, 11) & 0x20)) |
281 | timeout--; | 281 | timeout--; |
282 | if (ad_read(devc, 11) & 0x20) | 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 | printk(KERN_WARNING "ad1848: Auto calibration timed out(3).\n"); | 284 | printk(KERN_WARNING "ad1848: Auto calibration timed out(3).\n"); |
285 | } | 285 | } |
286 | 286 | ||