mirror of https://gitee.com/openkylin/linux.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 <hannes@hanneseder.net> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
f8532fde95
commit
aa611f85d0
|
@ -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");
|
||||
|
|
Loading…
Reference in New Issue