Re: [PATCHv5 1/3] ARM: Translate delay.S into (mostly) C

From: Mattias Wallin
Date: Wed Apr 06 2011 - 04:50:59 EST


On 04/06/2011 01:56 AM, Stephen Boyd wrote:
+void __udelay(unsigned long usecs)
+{
+ __const_udelay(usecs * ((2199023*HZ)>>11));
This will overflow if HZ=1000.
If I remember correct I fixed it like this:
__const_udelay(usecs * ((2199023UL*HZ)>>11));

/Mattias Wallin
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/