diff options
Diffstat (limited to 'drivers/isdn/i4l')
-rw-r--r-- | drivers/isdn/i4l/isdn_net.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/isdn/i4l/isdn_net.c b/drivers/isdn/i4l/isdn_net.c index 97988111e45a..48e9cc0369b1 100644 --- a/drivers/isdn/i4l/isdn_net.c +++ b/drivers/isdn/i4l/isdn_net.c | |||
@@ -1983,13 +1983,14 @@ isdn_net_rebuild_header(struct sk_buff *skb) | |||
1983 | return ret; | 1983 | return ret; |
1984 | } | 1984 | } |
1985 | 1985 | ||
1986 | static int isdn_header_cache(const struct neighbour *neigh, struct hh_cache *hh) | 1986 | static int isdn_header_cache(const struct neighbour *neigh, struct hh_cache *hh, |
1987 | __be16 type) | ||
1987 | { | 1988 | { |
1988 | const struct net_device *dev = neigh->dev; | 1989 | const struct net_device *dev = neigh->dev; |
1989 | isdn_net_local *lp = netdev_priv(dev); | 1990 | isdn_net_local *lp = netdev_priv(dev); |
1990 | 1991 | ||
1991 | if (lp->p_encap == ISDN_NET_ENCAP_ETHER) | 1992 | if (lp->p_encap == ISDN_NET_ENCAP_ETHER) |
1992 | return eth_header_cache(neigh, hh); | 1993 | return eth_header_cache(neigh, hh, type); |
1993 | return -1; | 1994 | return -1; |
1994 | } | 1995 | } |
1995 | 1996 | ||