Commit c959468f authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] sk98lin 64-bit divide fix

This driver is doing a division on a 64 bit valus which is identical to
"jiffies" and is asking for __udiv64.  Cast the 64-bit value back to long.
parent a8c45fa8
...@@ -341,7 +341,7 @@ typedef struct s_PnmiStatAddr { ...@@ -341,7 +341,7 @@ typedef struct s_PnmiStatAddr {
#if SK_TICKS_PER_SEC == 100 #if SK_TICKS_PER_SEC == 100
#define SK_PNMI_HUNDREDS_SEC(t) (t) #define SK_PNMI_HUNDREDS_SEC(t) (t)
#else #else
#define SK_PNMI_HUNDREDS_SEC(t) (((t) * 100) / (SK_TICKS_PER_SEC)) #define SK_PNMI_HUNDREDS_SEC(t) ((((long)t) * 100) / (SK_TICKS_PER_SEC))
#endif #endif
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment