Re: [alsa-devel] [PATCH] sound/usb/usx2y: simplify conditional

From: Takashi Iwai
Date: Mon Oct 11 2010 - 08:02:56 EST


At Tue, 5 Oct 2010 17:38:12 +0200,
Nicolas Kaiser wrote:
>
> Simplify conditional: (a || (!a && b)) => (a || b)
>
> Signed-off-by: Nicolas Kaiser <nikai@xxxxxxxxx>

Applied now. Thanks.


Takashi


> ---
> 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 2a528e5..3146a81 100644
> --- a/sound/usb/usx2y/usx2yhwdeppcm.c
> +++ b/sound/usb/usx2y/usx2yhwdeppcm.c
> @@ -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>
>
> --
> 1.7.2.2
> _______________________________________________
> Alsa-devel mailing list
> Alsa-devel@xxxxxxxxxxxxxxxx
> http://mailman.alsa-project.org/mailman/listinfo/alsa-devel
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/