diff options
| author | Nicolas Kaiser <nikai@nikai.net> | 2010-10-05 11:38:12 -0400 |
|---|---|---|
| committer | Takashi Iwai <tiwai@suse.de> | 2010-10-11 07:50:10 -0400 |
| commit | 1d2019fb6be2f318f0aa85be5f224f47a5f006fe (patch) | |
| tree | 62d85b5c625b7279036a5e125ec2479298b448bc | |
| parent | b7d22ccf08d67d13f77a9580d07e7f72e6241213 (diff) | |
ALSA: sound/usb/usx2y: simplify conditional
Simplify conditional: (a || (!a && b)) => (a || b)
Signed-off-by: Nicolas Kaiser <nikai@nikai.net>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
| -rw-r--r-- | sound/usb/usx2y/usx2yhwdeppcm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/usb/usx2y/usx2yhwdeppcm.c b/sound/usb/usx2y/usx2yhwdeppcm.c index 2a528e56afd5..3146a816068b 100644 --- a/sound/usb/usx2y/usx2yhwdeppcm.c +++ b/sound/usb/usx2y/usx2yhwdeppcm.c | |||
| @@ -54,7 +54,7 @@ | |||
| 54 | #include <linux/gfp.h> | 54 | #include <linux/gfp.h> |
| 55 | #include "usbusx2yaudio.c" | 55 | #include "usbusx2yaudio.c" |
| 56 | 56 | ||
| 57 | #if defined(USX2Y_NRPACKS_VARIABLE) || (!defined(USX2Y_NRPACKS_VARIABLE) && USX2Y_NRPACKS == 1) | 57 | #if defined(USX2Y_NRPACKS_VARIABLE) || USX2Y_NRPACKS == 1 |
| 58 | 58 | ||
| 59 | #include <sound/hwdep.h> | 59 | #include <sound/hwdep.h> |
| 60 | 60 | ||
