staging: comedi: ni_at_a2150: fix an always true condition test
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Mon, 9 Dec 2013 18:32:58 +0000 (11:32 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 11 Dec 2013 07:16:24 +0000 (23:16 -0800)
commit530376bfb7c82f50f20f9d28acd017194894eb66
tree8fb20637680c13ed52e0955b5de5e04435d7d3f9
parentb774930e0862fae23b0fe3e13cba01ad8954d270
staging: comedi: ni_at_a2150: fix an always true condition test

As pointed out by the kbuild test robot, and Ian Abbott, the dma >= 0 test
is always true because dma is unsigned. This generates a warn message:

drivers/staging/comedi/drivers/ni_at_a2150.c:715 a2150_attach()
  warn: always true condition '(dma >= 0) => (0-u32max >= 0)'

Fix the test as suggested by Ian Abbott.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Reported-by: kbuild test robot <fengguang.wu@intel.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/ni_at_a2150.c