From: Hannes Eder Date: Sat, 14 Feb 2009 13:10:33 +0000 (+0000) Subject: drivers/isdn/hardware/mISDN: change type of hfc_jiffies to unsigned long X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=aa611f85d0d656870dbb906e75d8cac6acb58943;p=linux-beck.git drivers/isdn/hardware/mISDN: change type of hfc_jiffies to unsigned long 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 Signed-off-by: David S. Miller --- diff --git a/drivers/isdn/hardware/mISDN/hfcpci.c b/drivers/isdn/hardware/mISDN/hfcpci.c index 2bb85c48b9b7..641a9cd1a532 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");