diff options
author | Roel Kluin <roel.kluin@gmail.com> | 2009-10-23 06:59:42 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-12-05 15:41:04 -0500 |
commit | f14a2972e40dbfbe7077ec7ab21cc2729f7e7d6d (patch) | |
tree | a90af6ec74660e5a811d40e7af45578c1b1e104f /drivers/media/video/vpx3220.c | |
parent | 311c70e1f906b7411b30f526ef15deb62cb37e7a (diff) |
V4L/DVB (13241): Cleanup redundant tests on unsigned
The variables are unsigned so the test `>= 0' is always true,
the `< 0' test always fails. In these cases the other part of
the test catches wrapped values.
Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/vpx3220.c')
-rw-r--r-- | drivers/media/video/vpx3220.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/vpx3220.c b/drivers/media/video/vpx3220.c index 97e0ce28ff18..33205d7537d8 100644 --- a/drivers/media/video/vpx3220.c +++ b/drivers/media/video/vpx3220.c | |||
@@ -391,7 +391,7 @@ static int vpx3220_s_routing(struct v4l2_subdev *sd, | |||
391 | {0x0e, 1} | 391 | {0x0e, 1} |
392 | }; | 392 | }; |
393 | 393 | ||
394 | if (input < 0 || input > 2) | 394 | if (input > 2) |
395 | return -EINVAL; | 395 | return -EINVAL; |
396 | 396 | ||
397 | v4l2_dbg(1, debug, sd, "input switched to %s\n", inputs[input]); | 397 | v4l2_dbg(1, debug, sd, "input switched to %s\n", inputs[input]); |