[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <adaiqnnxwxm.fsf@cisco.com>
Date: Fri, 06 Feb 2009 10:05:57 -0800
From: Roland Dreier <rdreier@...co.com>
To: Roel Kluin <roel.kluin@...il.com>
Cc: riku.voipio@....fi, rpurdie@...ys.net,
lkml <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH] leds: always true: (x != 1 || x != 2)
> - if (type != EV_SND && (code != SND_BELL || code != SND_TONE))
> + if (type != EV_SND && (code != SND_BELL && code != SND_TONE))
Actually more likely seems to be
if (type != EV_SND || (code != SND_BELL && code != SND_TONE))
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists