aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorHannes Eder <hannes@hanneseder.net>2009-02-14 08:10:33 -0500
committerDavid S. Miller <davem@davemloft.net>2009-02-16 02:39:21 -0500
commitaa611f85d0d656870dbb906e75d8cac6acb58943 (patch)
treecb5ee331a35539f8efe2e136d05bc9ba0ca1a7dd /drivers
parentf8532fde95c53e8ef2b5ea44542c82c117d28041 (diff)
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 <hannes@hanneseder.net> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/isdn/hardware/mISDN/hfcpci.c2
1 files changed, 1 insertions, 1 deletions
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;
57static uint debug; 57static uint debug;
58static uint poll, tics; 58static uint poll, tics;
59static struct timer_list hfc_tl; 59static struct timer_list hfc_tl;
60static u32 hfc_jiffies; 60static unsigned long hfc_jiffies;
61 61
62MODULE_AUTHOR("Karsten Keil"); 62MODULE_AUTHOR("Karsten Keil");
63MODULE_LICENSE("GPL"); 63MODULE_LICENSE("GPL");