From: Ashvini Varatharaj Date: Sat, 19 Oct 2013 07:56:44 +0000 (+0530) Subject: Staging: dgnc: removing the comparison 'board<0' X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=e15b0c4eeb88ed5f37ed2e887b6610bd1aa44348;p=deliverable%2Flinux.git Staging: dgnc: removing the comparison 'board<0' Fix dgnc_mgmt_ioctl() warn: unsigned 'board' is never less than zero. Signed-off-by: Ashvini Varatharaj Reviewed-by: Peter P Waskiewicz Jr Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/dgnc/dgnc_mgmt.c b/drivers/staging/dgnc/dgnc_mgmt.c index 354458c5068e..1c5ab3d007b0 100644 --- a/drivers/staging/dgnc/dgnc_mgmt.c +++ b/drivers/staging/dgnc/dgnc_mgmt.c @@ -220,7 +220,7 @@ long dgnc_mgmt_ioctl(struct file *file, unsigned int cmd, unsigned long arg) channel = ni.channel; /* Verify boundaries on board */ - if ((board < 0) || (board > dgnc_NumBoards) || (dgnc_NumBoards == 0)) + if ((board > dgnc_NumBoards) || (dgnc_NumBoards == 0)) return -ENODEV; /* Verify boundaries on channel */