The macro DIV_ROUND_UP performs the computation (((n) + (d) - 1) /(d)).
It clarifies the divisor calculations. This occurence was detected 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: simran singhal <singhalsimran0@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
                        timer = *ns / base;
                        break;
                case CMDF_ROUND_UP:
-                       timer = (*ns + base - 1) / base;
+                       timer = DIV_ROUND_UP(*ns, base);
                        break;
                }
 
 
 
        switch (flags & CMDF_ROUND_MASK) {
        case CMDF_ROUND_UP:
-               divisor = (ns + TIMER_BASE - 1) / TIMER_BASE;
+               divisor = DIV_ROUND_UP(ns, TIMER_BASE);
                break;
        case CMDF_ROUND_DOWN:
                divisor = ns / TIMER_BASE;