Commit 5365e5da authored by Herbert Xu's avatar Herbert Xu Committed by David S. Miller

[ATM]: Fix IRQ flags type in lec_arp_expire_vcc

It should be unsigned long.
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 89d11a0e
...@@ -1818,7 +1818,7 @@ lec_arp_expire_arp(unsigned long data) ...@@ -1818,7 +1818,7 @@ lec_arp_expire_arp(unsigned long data)
static void static void
lec_arp_expire_vcc(unsigned long data) lec_arp_expire_vcc(unsigned long data)
{ {
unsigned flags; unsigned long flags;
struct lec_arp_table *to_remove = (struct lec_arp_table*)data; struct lec_arp_table *to_remove = (struct lec_arp_table*)data;
struct lec_priv *priv = (struct lec_priv *)to_remove->priv; struct lec_priv *priv = (struct lec_priv *)to_remove->priv;
struct lec_arp_table *entry = NULL; struct lec_arp_table *entry = NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment