All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] [media] mceusb: Optimize DIV_ROUND_CLOSEST call
@ 2012-09-01 18:53 Jean Delvare
  2012-09-02  4:54 ` Guenter Roeck
  2012-09-18 15:49 ` Mauro Carvalho Chehab
  0 siblings, 2 replies; 6+ messages in thread
From: Jean Delvare @ 2012-09-01 18:53 UTC (permalink / raw)
  To: LMML; +Cc: Andrew Morton, Guenter Roeck, Mauro Carvalho Chehab

DIV_ROUND_CLOSEST is faster if the compiler knows it will only be
dealing with unsigned dividends.

Signed-off-by: Jean Delvare <khali@linux-fr.org>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Guenter Roeck <linux@roeck-us.net>
Cc: Mauro Carvalho Chehab <mchehab@infradead.org>
---
 drivers/media/rc/mceusb.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- linux-3.6-rc3.orig/drivers/media/rc/mceusb.c	2012-08-04 21:49:27.000000000 +0200
+++ linux-3.6-rc3/drivers/media/rc/mceusb.c	2012-09-01 18:53:32.053042123 +0200
@@ -627,7 +627,7 @@ static void mceusb_dev_printdata(struct
 			break;
 		case MCE_RSP_EQIRCFS:
 			period = DIV_ROUND_CLOSEST(
-					(1 << data1 * 2) * (data2 + 1), 10);
+					(1U << data1 * 2) * (data2 + 1), 10);
 			if (!period)
 				break;
 			carrier = (1000 * 1000) / period;


-- 
Jean Delvare

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2012-09-19  3:46 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-01 18:53 [PATCH] [media] mceusb: Optimize DIV_ROUND_CLOSEST call Jean Delvare
2012-09-02  4:54 ` Guenter Roeck
2012-09-18 15:49 ` Mauro Carvalho Chehab
2012-09-18 16:24   ` Guenter Roeck
2012-09-18 18:35   ` Jean Delvare
2012-09-19  3:46     ` Guenter Roeck

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.