diff options
author | Takashi Iwai <tiwai@suse.de> | 2009-02-17 01:59:40 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2009-02-17 02:00:44 -0500 |
commit | 83807400794a1d680a4fb70a610c5f486e734f45 (patch) | |
tree | 580a3e4e7c5a0cdb1a0d5cfd85d1b373bc493f96 /sound/pci/au88x0 | |
parent | e930e99500e5bd055270c668cca8bd2f33056895 (diff) |
ALSA: au88x0 - Fix &&|| typo
Fixed a typo of || and &&.
As it's in a disabled code section, there is no behavior change, though.
Reported-by: Jörg-Volker Peetz <jvpeetz@web.de>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/au88x0')
-rw-r--r-- | sound/pci/au88x0/au88x0_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/au88x0/au88x0_core.c b/sound/pci/au88x0/au88x0_core.c index e6a04d037c15..3906f5afe27a 100644 --- a/sound/pci/au88x0/au88x0_core.c +++ b/sound/pci/au88x0/au88x0_core.c | |||
@@ -2800,7 +2800,7 @@ vortex_translateformat(vortex_t * vortex, char bits, char nch, int encod) | |||
2800 | { | 2800 | { |
2801 | int a, this_194; | 2801 | int a, this_194; |
2802 | 2802 | ||
2803 | if ((bits != 8) || (bits != 16)) | 2803 | if ((bits != 8) && (bits != 16)) |
2804 | return -1; | 2804 | return -1; |
2805 | 2805 | ||
2806 | switch (encod) { | 2806 | switch (encod) { |