aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/wtap
diff options
context:
space:
mode:
authorBjoern A. Zeeb <bz@FreeBSD.org>2020-09-07 15:35:40 +0000
committerBjoern A. Zeeb <bz@FreeBSD.org>2020-09-07 15:35:40 +0000
commitc6167b4bf510d82035e8c8db3b0b074045b90916 (patch)
tree90ea109be3f420769bc4954b03001a21ed71d76c /sys/dev/wtap
parent5e20b96c6593c24e56a11e1f739dd2fb27cd22f3 (diff)
Notes
Diffstat (limited to 'sys/dev/wtap')
-rw-r--r--sys/dev/wtap/if_wtap.c14
1 files changed, 2 insertions, 12 deletions
diff --git a/sys/dev/wtap/if_wtap.c b/sys/dev/wtap/if_wtap.c
index 0ab68d0ae8b2..d860fad601bd 100644
--- a/sys/dev/wtap/if_wtap.c
+++ b/sys/dev/wtap/if_wtap.c
@@ -150,16 +150,6 @@ wtap_medium_enqueue(struct wtap_vap *avp, struct mbuf *m)
return medium_transmit(avp->av_md, avp->id, m);
}
-static int
-wtap_media_change(struct ifnet *ifp)
-{
-
- DWTAP_PRINTF("%s\n", __func__);
- int error = ieee80211_media_change(ifp);
- /* NB: only the fixed rate can change and that doesn't need a reset */
- return (error == ENETRESET ? 0 : error);
-}
-
/*
* Intercept management frames to collect beacon rssi data
* and to do ibss merges.
@@ -352,8 +342,8 @@ wtap_vap_create(struct ieee80211com *ic, const char name[IFNAMSIZ],
vap->iv_bmiss = wtap_bmiss;
/* complete setup */
- ieee80211_vap_attach(vap, wtap_media_change, ieee80211_media_status,
- mac);
+ ieee80211_vap_attach(vap, ieee80211_media_change,
+ ieee80211_media_status, mac);
avp->av_dev = make_dev(&wtap_cdevsw, 0, UID_ROOT, GID_WHEEL, 0600,
"%s", (const char *)sc->name);