diff options
author | Bhaktipriya Shridhar <bhaktipriya96@gmail.com> | 2016-03-08 23:28:13 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-03-11 22:09:09 -0800 |
commit | 3c2f78f4fc63b3f971ea5a4c4885f4f820bb6e69 (patch) | |
tree | a98aff2e0ddbe51701e15089384ac1b8b710e240 /tools/perf/scripts/python/export-to-postgresql.py | |
parent | 0cd8f4396e3204cff40208221a92cd6322d2b721 (diff) |
staging: rtl8723au: hal: Use 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/perf/scripts/python/export-to-postgresql.py')
0 files changed, 0 insertions, 0 deletions