Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751495Ab2KPJ1t (ORCPT ); Fri, 16 Nov 2012 04:27:49 -0500 Received: from cantor2.suse.de ([195.135.220.15]:56187 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750826Ab2KPJ1r (ORCPT ); Fri, 16 Nov 2012 04:27:47 -0500 Date: Fri, 16 Nov 2012 10:27:43 +0100 (CET) From: Jiri Kosina To: Tushar Behera Cc: linux-kernel@vger.kernel.org, patches@linaro.org, linux-usb@vger.kernel.org, linux-input@vger.kernel.org Subject: Re: [PATCH 11/14] HID: hiddev: Remove redundant check on unsigned variable In-Reply-To: <1353048646-10935-12-git-send-email-tushar.behera@linaro.org> Message-ID: References: <1353048646-10935-1-git-send-email-tushar.behera@linaro.org> <1353048646-10935-12-git-send-email-tushar.behera@linaro.org> User-Agent: Alpine 2.00 (LNX 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1131 Lines: 36 On Fri, 16 Nov 2012, Tushar Behera wrote: > No need to check whether unsigned variable is less than 0. > > CC: Jiri Kosina > CC: linux-usb@vger.kernel.org > CC: linux-input@vger.kernel.org > Signed-off-by: Tushar Behera > --- > drivers/hid/usbhid/hiddev.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/drivers/hid/usbhid/hiddev.c b/drivers/hid/usbhid/hiddev.c > index 14599e2..711c965 100644 > --- a/drivers/hid/usbhid/hiddev.c > +++ b/drivers/hid/usbhid/hiddev.c > @@ -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++) Applied, thanks. -- Jiri Kosina SUSE Labs -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/