]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: comedi: ni_labpc_common: use DIV_ROUND_CLOSEST to round divisor values
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Wed, 21 Jan 2015 22:11:48 +0000 (15:11 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 25 Jan 2015 11:59:13 +0000 (19:59 +0800)
Use the DIV_ROUND_CLOSEST macro to clarify the (((x) + ((divisor) / 2)) / (divisor))
calculations.

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/ni_labpc_common.c

index c494c53ef3355c77881ca2f94c9b7dc9cd631dd1..77a7856ffff0415e826746fc18e8ebecaf3592f9 100644 (file)
@@ -400,10 +400,10 @@ static void labpc_adc_timing(struct comedi_device *dev, struct comedi_cmd *cmd,
                switch (cmd->flags & CMDF_ROUND_MASK) {
                default:
                case CMDF_ROUND_NEAREST:
-                       devpriv->divisor_a0 =
-                           (convert_period + (base_period / 2)) / base_period;
-                       devpriv->divisor_b1 =
-                           (scan_period + (base_period / 2)) / base_period;
+                       devpriv->divisor_a0 = DIV_ROUND_CLOSEST(convert_period,
+                                                               base_period);
+                       devpriv->divisor_b1 = DIV_ROUND_CLOSEST(scan_period,
+                                                               base_period);
                        break;
                case CMDF_ROUND_UP:
                        devpriv->divisor_a0 = DIV_ROUND_UP(convert_period,