diff options
author | Hannes Eder <hannes@hanneseder.net> | 2009-02-14 08:10:33 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-02-16 02:39:21 -0500 |
commit | aa611f85d0d656870dbb906e75d8cac6acb58943 (patch) | |
tree | cb5ee331a35539f8efe2e136d05bc9ba0ca1a7dd /drivers/isdn | |
parent | f8532fde95c53e8ef2b5ea44542c82c117d28041 (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/isdn')
-rw-r--r-- | drivers/isdn/hardware/mISDN/hfcpci.c | 2 |
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; | |||
57 | static uint debug; | 57 | static uint debug; |
58 | static uint poll, tics; | 58 | static uint poll, tics; |
59 | static struct timer_list hfc_tl; | 59 | static struct timer_list hfc_tl; |
60 | static u32 hfc_jiffies; | 60 | static unsigned long hfc_jiffies; |
61 | 61 | ||
62 | MODULE_AUTHOR("Karsten Keil"); | 62 | MODULE_AUTHOR("Karsten Keil"); |
63 | MODULE_LICENSE("GPL"); | 63 | MODULE_LICENSE("GPL"); |