aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media
diff options
context:
space:
mode:
authorDan Carpenter <error27@gmail.com>2010-05-04 08:37:33 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2010-05-19 12:59:03 -0300
commitf03900d696079fa1e93c91af0e49c55b9b7dd105 (patch)
treee63deaa81e5425f769a0ad293ec3e476bc178758 /drivers/media
parentV4L/DVB: tvp7002.c: fix some copy-paste errors in the comments (diff)
downloadlinux-dev-f03900d696079fa1e93c91af0e49c55b9b7dd105.tar.xz
linux-dev-f03900d696079fa1e93c91af0e49c55b9b7dd105.zip
V4L/DVB: media/IR/imon: precendence issue: ! vs ==
The original condition is always false because ! has higher precedence than == and neither 0 nor 1 is equal to IMON_DISPLAY_TYPE_VGA. Signed-off-by: Dan Carpenter <error27@gmail.com> Acked-by: Jarod Wilson <jarod@redhat.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media')
-rw-r--r--drivers/media/IR/imon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/IR/imon.c b/drivers/media/IR/imon.c
index 27743eb0916d..9ca5e864d16f 100644
--- a/drivers/media/IR/imon.c
+++ b/drivers/media/IR/imon.c
@@ -974,7 +974,7 @@ static void imon_touch_display_timeout(unsigned long data)
{
struct imon_context *ictx = (struct imon_context *)data;
- if (!ictx->display_type == IMON_DISPLAY_TYPE_VGA)
+ if (ictx->display_type != IMON_DISPLAY_TYPE_VGA)
return;
input_report_abs(ictx->touch, ABS_X, ictx->touch_x);