diff options
author | Hannes Eder <hannes@hanneseder.net> | 2009-02-14 13:10:33 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-02-15 23:39:21 -0800 |
commit | aa611f85d0d656870dbb906e75d8cac6acb58943 (patch) | |
tree | cb5ee331a35539f8efe2e136d05bc9ba0ca1a7dd /drivers/isdn | |
parent | f8532fde95c53e8ef2b5ea44542c82c117d28041 (diff) | |
download | linux-aa611f85d0d656870dbb906e75d8cac6acb58943.tar.gz linux-aa611f85d0d656870dbb906e75d8cac6acb58943.tar.bz2 linux-aa611f85d0d656870dbb906e75d8cac6acb58943.zip |
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; 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"); |