diff options
author | Riku Voipio <riku.voipio@iki.fi> | 2009-03-03 15:13:06 -0500 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-04-06 11:06:27 -0400 |
commit | 7fbc3a9b132e93b2ba1fd889c1ad8a4135731cc3 (patch) | |
tree | fb1ac8fcd39ab77fbd72454ed5735891f688363c /drivers/leds | |
parent | b0edba7ef89a64614e40023bf87ed5b402834e04 (diff) |
leds: Fix &&/|| confusion in leds-pca9532.c
This fixes the expression in the driver to do the correct thing,
not that I think anyone would send SND_* without EV_SND.
Thanks to Roel Kluin <roel.kluin@gmail.com> for noticing.
Signed-off-by: Riku Voipio <riku.voipio@iki.fi>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'drivers/leds')
-rw-r--r-- | 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 bd3b431c9710..3937244fdcab 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, | |||
169 | { | 169 | { |
170 | struct pca9532_data *data = input_get_drvdata(dev); | 170 | struct pca9532_data *data = input_get_drvdata(dev); |
171 | 171 | ||
172 | if (type != EV_SND && (code != SND_BELL || code != SND_TONE)) | 172 | if (!(type == EV_SND && (code == SND_BELL || code == SND_TONE))) |
173 | return -1; | 173 | return -1; |
174 | 174 | ||
175 | /* XXX: allow different kind of beeps with psc/pwm modifications */ | 175 | /* XXX: allow different kind of beeps with psc/pwm modifications */ |