drivers/isdn/hardware/mISDN: change type of hfc_jiffies to unsigned long
authorHannes Eder <hannes@hanneseder.net>
Sat, 14 Feb 2009 13:10:33 +0000 (13:10 +0000)
committerDavid S. Miller <davem@davemloft.net>
Mon, 16 Feb 2009 07:39:21 +0000 (23:39 -0800)
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>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/isdn/hardware/mISDN/hfcpci.c

index 2bb85c4..641a9cd 100644 (file)
@@ -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");