-----Original Message-----
From: David Miller [mailto:davem@davemloft.net]
Sent: Thursday, February 09, 2012 6:43 AM
quoted
-#define BE_MAX_EQD 96
+#define BE_MAX_EQD ((u32)96)
What in the world is this garbage? You either don't need it, or you
need to do it cleanly. And doing it cleanly is adding a "U" postfix
or similar to the constant, not destroying how it looks it with an
ugly cast.
Dave, I'll fix this and re-post ...thanks.