summaryrefslogtreecommitdiff
path: root/tools/testing
diff options
context:
space:
mode:
authorBhaktipriya Shridhar <bhaktipriya96@gmail.com>2016-03-10 00:03:49 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-03-10 19:34:22 -0800
commitdf6ba4f16170838482319f40ce1a2b280b9e80f3 (patch)
tree38eea43a96575bea45381eb7c532150ac391c5a6 /tools/testing
parent44b8c793fc0d63060c6c87f0af4f9b367e2ec4fc (diff)
staging: comedi: drivers: amplc_pci230: 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: Bhaktipriya Shridhar <bhaktipriya96@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'tools/testing')
0 files changed, 0 insertions, 0 deletions