kernel_optimize_test/drivers/usb/misc
Julia Lawall dfa5ec79d2 USB: use DIV_ROUND_UP
The kernel.h macro DIV_ROUND_UP performs the computation (((n) + (d) - 1) /
(d)) but is perhaps more readable.

An extract of 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 n,d;
@@

(
- (n + d - 1) / d
+ DIV_ROUND_UP(n,d)
|
- (n + (d - 1)) / d
+ DIV_ROUND_UP(n,d)
)

@depends on haskernel@
expression n,d;
@@

- DIV_ROUND_UP((n),d)
+ DIV_ROUND_UP(n,d)

@depends on haskernel@
expression n,d;
@@

- DIV_ROUND_UP(n,(d))
+ DIV_ROUND_UP(n,d)
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2008-04-24 21:16:39 -07:00
..
sisusbvga
adutux.c
appledisplay.c
auerswald.c USB: auerswald: Convert ccp->mutex in a mutex 2008-04-24 21:16:38 -07:00
berry_charge.c
cypress_cy7c63.c
cytherm.c
emi26_fw.h
emi26.c
emi62_fw_m.h
emi62_fw_s.h
emi62.c
ftdi-elan.c
idmouse.c
iowarrior.c
Kconfig
ldusb.c
legousbtower.c
Makefile
phidget.c
phidget.h
phidgetkit.c
phidgetmotorcontrol.c
phidgetservo.c
rio500_usb.h
rio500.c
trancevibrator.c
usb_u132.h
usblcd.c
usbled.c
usbtest.c USB: use DIV_ROUND_UP 2008-04-24 21:16:39 -07:00
uss720.c