linux-kernel-test/arch/mips/nxp/pnx8550/common
Julia Lawall 64f1815507 MIPS: 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: Ralf Baechle <ralf@linux-mips.org>
2009-08-03 17:52:46 +01:00
..
int.c [MIPS] kgdb: Remove existing implementation 2008-07-30 21:54:42 +01:00
Makefile [MIPS] kgdb: Remove existing implementation 2008-07-30 21:54:42 +01:00
pci.c [MIPS] Move arch/mips/philips to arch/mips/nxp 2008-04-28 17:14:26 +01:00
platform.c dma-mapping: replace all DMA_32BIT_MASK macro with DMA_BIT_MASK(32) 2009-04-07 08:31:11 -07:00
proc.c [MIPS] kgdb: Remove existing implementation 2008-07-30 21:54:42 +01:00
prom.c [MIPS] Move arch/mips/philips to arch/mips/nxp 2008-04-28 17:14:26 +01:00
reset.c [MIPS] Move arch/mips/philips to arch/mips/nxp 2008-04-28 17:14:26 +01:00
setup.c [MIPS] kgdb: Remove existing implementation 2008-07-30 21:54:42 +01:00
time.c MIPS: Use DIV_ROUND_CLOSEST 2009-08-03 17:52:46 +01:00