aboutsummaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorAdrian Chadd <adrian@FreeBSD.org>2015-08-20 03:57:41 +0000
committerAdrian Chadd <adrian@FreeBSD.org>2015-08-20 03:57:41 +0000
commit3843c5e486da8e4a6ca20118c3f5859575547f07 (patch)
tree02fd50a7f837868eee14f7339ddb6963e31695cd /sys/dev
parent971c424c7e254c7c67bf085ecafc9a76d3906807 (diff)
downloadsrc-3843c5e486da8e4a6ca20118c3f5859575547f07.tar.gz
src-3843c5e486da8e4a6ca20118c3f5859575547f07.zip
Remove some if_softc references from urtwn(4).
The only ones that are left are in if_start, if_stop and ioctl. Tested: * urtwn0: MAC/BB RTL8188CUS, RF 6052 1T1R, STA mode
Notes
Notes: svn path=/head/; revision=286949
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/usb/wlan/if_urtwn.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/usb/wlan/if_urtwn.c b/sys/dev/usb/wlan/if_urtwn.c
index 6b712b3dbcb6..eb077cbea062 100644
--- a/sys/dev/usb/wlan/if_urtwn.c
+++ b/sys/dev/usb/wlan/if_urtwn.c
@@ -1513,7 +1513,7 @@ urtwn_newstate(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
{
struct urtwn_vap *uvp = URTWN_VAP(vap);
struct ieee80211com *ic = vap->iv_ic;
- struct urtwn_softc *sc = ic->ic_ifp->if_softc;
+ struct urtwn_softc *sc = ic->ic_softc;
struct ieee80211_node *ni;
enum ieee80211_state ostate;
uint32_t reg;
@@ -1989,8 +1989,8 @@ urtwn_start_locked(struct ifnet *ifp, struct urtwn_softc *sc)
static int
urtwn_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
{
- struct urtwn_softc *sc = ifp->if_softc;
struct ieee80211com *ic = ifp->if_l2com;
+ struct urtwn_softc *sc = ic->ic_softc;
struct ifreq *ifr = (struct ifreq *) data;
int error = 0, startall = 0;
@@ -2004,7 +2004,7 @@ urtwn_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
case SIOCSIFFLAGS:
if (ifp->if_flags & IFF_UP) {
if ((ifp->if_drv_flags & IFF_DRV_RUNNING) == 0) {
- urtwn_init(ifp->if_softc);
+ urtwn_init(sc);
startall = 1;
}
} else {
@@ -3134,7 +3134,7 @@ urtwn_scan_end(struct ieee80211com *ic)
static void
urtwn_set_channel(struct ieee80211com *ic)
{
- struct urtwn_softc *sc = ic->ic_ifp->if_softc;
+ struct urtwn_softc *sc = ic->ic_softc;
struct ieee80211vap *vap = TAILQ_FIRST(&ic->ic_vaps);
URTWN_LOCK(sc);
@@ -3524,7 +3524,7 @@ urtwn_raw_xmit(struct ieee80211_node *ni, struct mbuf *m,
{
struct ieee80211com *ic = ni->ni_ic;
struct ifnet *ifp = ic->ic_ifp;
- struct urtwn_softc *sc = ifp->if_softc;
+ struct urtwn_softc *sc = ic->ic_softc;
struct urtwn_data *bf;
/* prevent management frames from being sent if we're not ready */