diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2010-08-27 17:08:02 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2010-08-27 17:08:02 +0000 |
commit | e8ad753752758c2cfa85f8c08dd41f982b096c56 (patch) | |
tree | 8bb7235dfdb22a9f3ab77b7a8eb911512da40831 /sys/dev/ic/ath.c | |
parent | c766b87a799f8e51a14cd8938bbceb1dfe2b3d80 (diff) |
remove the unused if_init callback in struct ifnet
ok deraadt@ henning@ claudio@
Diffstat (limited to 'sys/dev/ic/ath.c')
-rw-r--r-- | sys/dev/ic/ath.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/ic/ath.c b/sys/dev/ic/ath.c index bf43d6769f9..e3c148a0227 100644 --- a/sys/dev/ic/ath.c +++ b/sys/dev/ic/ath.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ath.c,v 1.88 2010/08/27 04:09:18 deraadt Exp $ */ +/* $OpenBSD: ath.c,v 1.89 2010/08/27 17:08:00 jsg Exp $ */ /* $NetBSD: ath.c,v 1.37 2004/08/18 21:59:39 dyoung Exp $ */ /*- @@ -350,7 +350,6 @@ ath_attach(u_int16_t devid, struct ath_softc *sc) ifp->if_watchdog = ath_watchdog; ifp->if_ioctl = ath_ioctl; #ifndef __OpenBSD__ - ifp->if_init = ath_init; ifp->if_stop = ath_stop; /* XXX */ #endif IFQ_SET_MAXLEN(&ifp->if_snd, ATH_TXBUF * ATH_TXDESC); |