diff options
author | Julia Lawall <julia@diku.dk> | 2009-08-02 04:46:45 -0400 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2009-08-18 17:06:52 -0400 |
commit | a692838dcaacb5f6f05fac73abb99d92dd7b1021 (patch) | |
tree | 9b84d323b2b8014b7222bac6a6d6de100708f083 /REPORTING-BUGS | |
parent | 5b9eda3313b678f20f2bec08e8173f93e85f6c14 (diff) |
arch/arm/plat-iop: Use DIV_ROUND_CLOSEST
The kernel.h macro DIV_ROUND_CLOSEST performs the computation (x + d/2)/d
but is perhaps more readable.
The semantic patch that makes this change is as follows:
(http://www.emn.fr/x-info/coccinelle/)
// <smpl>
@haskernel@
@@
#include <linux/kernel.h>
@depends on haskernel@
expression x,__divisor;
@@
- (((x) + ((__divisor) / 2)) / (__divisor))
+ DIV_ROUND_CLOSEST(x,__divisor)
// </smpl>
Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'REPORTING-BUGS')
0 files changed, 0 insertions, 0 deletions