diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-10-27 11:52:19 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-10-27 16:04:33 -0400 |
commit | d6eb0b992aafcbd34b33075458106aad03a0adb8 (patch) | |
tree | f5cc3cb1cffedc90bb3508c98493c8fa5efe7e74 | |
parent | 2aebbf6737212265b917ed27c875c59d3037110a (diff) |
[media] ivtv-ioctl.c: remove an useless check
drivers/media/pci/ivtv/ivtv-ioctl.c: In function 'ivtv_s_input':
drivers/media/pci/ivtv/ivtv-ioctl.c:996:2: warning: comparison of unsigned expression < 0 is always false [-Wtype-limits]
Cc: Andy Walls <awalls@md.metrocast.net>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r-- | drivers/media/pci/ivtv/ivtv-ioctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/pci/ivtv/ivtv-ioctl.c b/drivers/media/pci/ivtv/ivtv-ioctl.c index 31a69ebdc7a4..7a8b0d0b6127 100644 --- a/drivers/media/pci/ivtv/ivtv-ioctl.c +++ b/drivers/media/pci/ivtv/ivtv-ioctl.c | |||
@@ -993,7 +993,7 @@ int ivtv_s_input(struct file *file, void *fh, unsigned int inp) | |||
993 | v4l2_std_id std; | 993 | v4l2_std_id std; |
994 | int i; | 994 | int i; |
995 | 995 | ||
996 | if (inp < 0 || inp >= itv->nof_inputs) | 996 | if (inp >= itv->nof_inputs) |
997 | return -EINVAL; | 997 | return -EINVAL; |
998 | 998 | ||
999 | if (inp == itv->active_input) { | 999 | if (inp == itv->active_input) { |