staging: comedi: mite: remove BUG_ON() in MITE_IODWBSR_1_WSIZE_bits()
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Wed, 20 Apr 2016 17:36:42 +0000 (10:36 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 29 Apr 2016 05:18:51 +0000 (22:18 -0700)
Prior to calling this function pci_ioremap_bar() is called. If the
pci_resource_len(), i.e. the 'size', was 0 the ioremap would fail
so this function would never be called. So the first BUG_ON() can
never occur.

The 'order' returned by ilog2() will always be > 0 so the second
BUG_ON() will also never occur.

Remove the unnecessary BUG_ON() checks and tidy up the function.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/mite.c

index d5475cd89d1e5645f5116aa0ade3d3e5469ccf47..2233a412cf263fe753bd4a1f55d9993ce3b51a05 100644 (file)
 
 static unsigned int MITE_IODWBSR_1_WSIZE_bits(unsigned int size)
 {
-       unsigned int order = 0;
-
-       BUG_ON(size == 0);
-       order = ilog2(size);
-       BUG_ON(order < 1);
-       return (order - 1) & 0x1f;
+       return (ilog2(size) - 1) & 0x1f;
 }
 
 static unsigned int mite_retry_limit(unsigned int retry_limit)
This page took 0.032848 seconds and 5 git commands to generate.