Commit 01163176 authored by Bhaktipriya Shridhar's avatar Bhaktipriya Shridhar Committed by Greg Kroah-Hartman

staging: comedi: rtd520: Prefer using macro DIV_ROUND_UP

The macro DIV_ROUND_UP performs the computation
(((n) + (d) - 1) /(d)). It clarifies the divisor calculations.
This was done using the coccinelle script:
@@
expression e1;
expression e2;
@@
(
- ((e1) + e2 - 1) / (e2)
+ DIV_ROUND_UP(e1,e2)
|
- ((e1) + (e2 - 1)) / (e2)
+ DIV_ROUND_UP(e1,e2)
)
Signed-off-by: default avatarBhaktipriya Shridhar <bhaktipriya96@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7f9d2b1c
...@@ -892,9 +892,8 @@ static int rtd_ai_cmd(struct comedi_device *dev, struct comedi_subdevice *s) ...@@ -892,9 +892,8 @@ static int rtd_ai_cmd(struct comedi_device *dev, struct comedi_subdevice *s)
devpriv->xfer_count = cmd->chanlist_len; devpriv->xfer_count = cmd->chanlist_len;
} else { /* make a multiple of scan length */ } else { /* make a multiple of scan length */
devpriv->xfer_count = devpriv->xfer_count =
(devpriv->xfer_count + DIV_ROUND_UP(devpriv->xfer_count,
cmd->chanlist_len - 1) cmd->chanlist_len);
/ cmd->chanlist_len;
devpriv->xfer_count *= cmd->chanlist_len; devpriv->xfer_count *= cmd->chanlist_len;
} }
devpriv->flags |= SEND_EOS; devpriv->flags |= SEND_EOS;
......
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