Commit 83807400 authored by Takashi Iwai's avatar Takashi Iwai

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: default avatarJörg-Volker Peetz <jvpeetz@web.de>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent e930e995
......@@ -2800,7 +2800,7 @@ vortex_translateformat(vortex_t * vortex, char bits, char nch, int encod)
{
int a, this_194;
if ((bits != 8) || (bits != 16))
if ((bits != 8) && (bits != 16))
return -1;
switch (encod) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment