diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2015-05-21 09:44:33 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2015-05-21 09:44:33 +0000 |
commit | 31432e58808bd5c5d5faa652633c0d987fa6ebe9 (patch) | |
tree | eb0e43e15b481fff7331bb99584696ede37a7fd7 /sys/dev | |
parent | 4e92733afb9ecfc01756fa55d10e648571ee6922 (diff) |
No need for ifp since we do not set "rcvif".
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/ic/dp8390.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/ic/dp8390.c b/sys/dev/ic/dp8390.c index e99a1d3cd1b..85487004587 100644 --- a/sys/dev/ic/dp8390.c +++ b/sys/dev/ic/dp8390.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dp8390.c,v 1.53 2015/05/21 09:36:20 mpi Exp $ */ +/* $OpenBSD: dp8390.c,v 1.54 2015/05/21 09:44:32 mpi Exp $ */ /* $NetBSD: dp8390.c,v 1.13 1998/07/05 06:49:11 jonathan Exp $ */ /* @@ -927,7 +927,6 @@ dp8390_getmcaf(struct arpcom *ac, u_int8_t *af) struct mbuf * dp8390_get(struct dp8390_softc *sc, int src, u_short total_len) { - struct ifnet *ifp = &sc->sc_arpcom.ac_if; struct mbuf *m, *m0, *newm; u_short len; |