dect
/
linux-2.6
Archived
13
0
Fork 0

HID: hiddev: Remove redundant check on unsigned variable

No need to check whether unsigned variable is less than 0.

CC: Jiri Kosina <jkosina@suse.cz>
CC: linux-usb@vger.kernel.org
CC: linux-input@vger.kernel.org
Signed-off-by: Tushar Behera <tushar.behera@linaro.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:
Tushar Behera 2012-11-16 12:20:43 +05:30 committed by Jiri Kosina
parent 88c687b3e6
commit d339f61d14
1 changed files with 1 additions and 1 deletions

View File

@ -625,7 +625,7 @@ static long hiddev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
break;
case HIDIOCAPPLICATION:
if (arg < 0 || arg >= hid->maxapplication)
if (arg >= hid->maxapplication)
break;
for (i = 0; i < hid->maxcollection; i++)