diff options
author | glebius <glebius@FreeBSD.org> | 2015-05-25 13:51:13 +0000 |
---|---|---|
committer | glebius <glebius@FreeBSD.org> | 2015-05-25 13:51:13 +0000 |
commit | f67a4dcfd7b755e279a3eacad335e4b19f063aab (patch) | |
tree | 20c52d5b70928dbf070e0479f87a9ad4dd8df9e2 /sys/dev/bwn/if_bwn.c | |
parent | 9f7fffcc5b3bcf5932d21d2c7a6fe6ff3586ebb7 (diff) | |
download | FreeBSD-src-f67a4dcfd7b755e279a3eacad335e4b19f063aab.zip FreeBSD-src-f67a4dcfd7b755e279a3eacad335e4b19f063aab.tar.gz |
Make net80211 drivers supply their device name to the net80211 layer, so
that the latter doesn't need to go through struct ifnet to get their name.
Sponsored by: Netflix
Sponsored by: Nginx, Inc.
Diffstat (limited to 'sys/dev/bwn/if_bwn.c')
-rw-r--r-- | sys/dev/bwn/if_bwn.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/dev/bwn/if_bwn.c b/sys/dev/bwn/if_bwn.c index 959d1f1..897f56f 100644 --- a/sys/dev/bwn/if_bwn.c +++ b/sys/dev/bwn/if_bwn.c @@ -1058,6 +1058,7 @@ bwn_attach_post(struct bwn_softc *sc) ic = ifp->if_l2com; ic->ic_ifp = ifp; + ic->ic_name = device_get_nameunit(sc->sc_dev); /* XXX not right but it's not used anywhere important */ ic->ic_phytype = IEEE80211_T_OFDM; ic->ic_opmode = IEEE80211_M_STA; |