diff options
author | Roel Kluin <roel.kluin@gmail.com> | 2009-05-02 15:38:47 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-06-16 17:20:58 -0400 |
commit | 223ffe5f8270ba9d069f1cbff9acec095a6f58b1 (patch) | |
tree | c9b7f1288f2b16c9b4466f5a643ec34ac71fbb15 /drivers/media/video/hexium_orion.c | |
parent | ca19d84295c2579229c5478db8b0f9cd7e821685 (diff) |
V4L/DVB: cleanup redundant tests on unsigned
Remove redundant tests on unsigned.
Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/hexium_orion.c')
-rw-r--r-- | drivers/media/video/hexium_orion.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/hexium_orion.c b/drivers/media/video/hexium_orion.c index 2bc39f62845..39d65ca41c6 100644 --- a/drivers/media/video/hexium_orion.c +++ b/drivers/media/video/hexium_orion.c | |||
@@ -325,7 +325,7 @@ static int vidioc_enum_input(struct file *file, void *fh, struct v4l2_input *i) | |||
325 | { | 325 | { |
326 | DEB_EE(("VIDIOC_ENUMINPUT %d.\n", i->index)); | 326 | DEB_EE(("VIDIOC_ENUMINPUT %d.\n", i->index)); |
327 | 327 | ||
328 | if (i->index < 0 || i->index >= HEXIUM_INPUTS) | 328 | if (i->index >= HEXIUM_INPUTS) |
329 | return -EINVAL; | 329 | return -EINVAL; |
330 | 330 | ||
331 | memcpy(i, &hexium_inputs[i->index], sizeof(struct v4l2_input)); | 331 | memcpy(i, &hexium_inputs[i->index], sizeof(struct v4l2_input)); |