Commit b35759de authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: ni_labpc_common: use DIV_ROUND_CLOSEST to round divisor values

Use the DIV_ROUND_CLOSEST macro to clarify the (((x) + ((divisor) / 2)) / (divisor))
calculations.
Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: default avatarIan Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent bcdf8b5d
...@@ -400,10 +400,10 @@ static void labpc_adc_timing(struct comedi_device *dev, struct comedi_cmd *cmd, ...@@ -400,10 +400,10 @@ static void labpc_adc_timing(struct comedi_device *dev, struct comedi_cmd *cmd,
switch (cmd->flags & CMDF_ROUND_MASK) { switch (cmd->flags & CMDF_ROUND_MASK) {
default: default:
case CMDF_ROUND_NEAREST: case CMDF_ROUND_NEAREST:
devpriv->divisor_a0 = devpriv->divisor_a0 = DIV_ROUND_CLOSEST(convert_period,
(convert_period + (base_period / 2)) / base_period; base_period);
devpriv->divisor_b1 = devpriv->divisor_b1 = DIV_ROUND_CLOSEST(scan_period,
(scan_period + (base_period / 2)) / base_period; base_period);
break; break;
case CMDF_ROUND_UP: case CMDF_ROUND_UP:
devpriv->divisor_a0 = DIV_ROUND_UP(convert_period, devpriv->divisor_a0 = DIV_ROUND_UP(convert_period,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment