mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
staging: comedi: Using macro DIV_ROUND_UP
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>
This commit is contained in:
parent
427fda4e5c
commit
7dfc697124
@ -502,7 +502,7 @@ static int apci3xxx_ai_ns_to_timer(struct comedi_device *dev,
|
||||
timer = *ns / base;
|
||||
break;
|
||||
case CMDF_ROUND_UP:
|
||||
timer = (*ns + base - 1) / base;
|
||||
timer = DIV_ROUND_UP(*ns, base);
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -2007,7 +2007,7 @@ static unsigned int get_divisor(unsigned int ns, unsigned int flags)
|
||||
|
||||
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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user