| Submitter | Hannes Eder |
|---|---|
| Date | Feb. 14, 2009, 11:10 p.m. |
| Message ID | <20090214230701.21991.75646.stgit@vmbox.hanneseder.net> |
| Download | mbox | patch |
| Permalink | /patch/23191/ |
| State | Accepted |
| Delegated to: | David Miller |
| Headers | show |
Comments
From: Hannes Eder <hannes@hanneseder.net> Date: Sun, 15 Feb 2009 00:10:33 +0100 > Jiffies are unsigned long, make sure we fit in jiffies store variable > on archs with bits per long > 32. > > Patch suggested by Jiri Slaby. > > Signed-off-by: Hannes Eder <hannes@hanneseder.net> Also applied, thank you. -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Patch
diff --git a/drivers/isdn/hardware/mISDN/hfcpci.c b/drivers/isdn/hardware/mISDN/hfcpci.c index 2bb85c4..641a9cd 100644 --- a/drivers/isdn/hardware/mISDN/hfcpci.c +++ b/drivers/isdn/hardware/mISDN/hfcpci.c @@ -57,7 +57,7 @@ static int HFC_cnt; static uint debug; static uint poll, tics; static struct timer_list hfc_tl; -static u32 hfc_jiffies; +static unsigned long hfc_jiffies; MODULE_AUTHOR("Karsten Keil"); MODULE_LICENSE("GPL");