Commit 1d2019fb authored by Nicolas Kaiser's avatar Nicolas Kaiser Committed by Takashi Iwai

ALSA: sound/usb/usx2y: simplify conditional

Simplify conditional: (a || (!a && b)) => (a || b)
Signed-off-by: default avatarNicolas Kaiser <nikai@nikai.net>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent b7d22ccf
......@@ -54,7 +54,7 @@
#include <linux/gfp.h>
#include "usbusx2yaudio.c"
#if defined(USX2Y_NRPACKS_VARIABLE) || (!defined(USX2Y_NRPACKS_VARIABLE) && USX2Y_NRPACKS == 1)
#if defined(USX2Y_NRPACKS_VARIABLE) || USX2Y_NRPACKS == 1
#include <sound/hwdep.h>
......
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