[PATCH] leds: Fix typo of || to && in drivers/leds/leds-pca9532.c

From: Wei Yongjun
Date: Tue Feb 17 2009 - 00:19:30 EST


Fix the typo of || to &&.

Signed-off-by: Wei Yongjun <yjwei@xxxxxxxxxxxxxx>
---
drivers/leds/leds-pca9532.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/leds/leds-pca9532.c b/drivers/leds/leds-pca9532.c
index 76ec749..c4a1265 100644
--- a/drivers/leds/leds-pca9532.c
+++ b/drivers/leds/leds-pca9532.c
@@ -169,7 +169,7 @@ static int pca9532_event(struct input_dev *dev, unsigned int type,
{
struct pca9532_data *data = input_get_drvdata(dev);

- if (type != EV_SND && (code != SND_BELL || code != SND_TONE))
+ if (type != EV_SND && code != SND_BELL && code != SND_TONE)
return -1;

/* XXX: allow different kind of beeps with psc/pwm modifications */
--
1.5.3.8




--
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/