diff options
author | adrian <adrian@FreeBSD.org> | 2015-08-08 01:10:17 +0000 |
---|---|---|
committer | adrian <adrian@FreeBSD.org> | 2015-08-08 01:10:17 +0000 |
commit | bad6d5c89b6ffd35818850d95cb88e218dee73b3 (patch) | |
tree | 5973a9059f73ed5abf84d6d98e44f1953e764064 /sys/dev/ral/rt2560var.h | |
parent | 33a3844dbf69152b9d47f6fa1ac1c2d5b1d502e4 (diff) | |
download | FreeBSD-src-bad6d5c89b6ffd35818850d95cb88e218dee73b3.zip FreeBSD-src-bad6d5c89b6ffd35818850d95cb88e218dee73b3.tar.gz |
Revert the wifi ifnet changes until things are more baked and tested.
* 286410
* 286413
* 286416
The initial commit broke a variety of debug and features that aren't
in the GENERIC kernels but are enabled in other platforms.
Diffstat (limited to 'sys/dev/ral/rt2560var.h')
-rw-r--r-- | sys/dev/ral/rt2560var.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sys/dev/ral/rt2560var.h b/sys/dev/ral/rt2560var.h index 3a5fef9..b6a8d68 100644 --- a/sys/dev/ral/rt2560var.h +++ b/sys/dev/ral/rt2560var.h @@ -105,13 +105,13 @@ struct rt2560_vap { #define RT2560_VAP(vap) ((struct rt2560_vap *)(vap)) struct rt2560_softc { - struct ieee80211com sc_ic; - struct mtx sc_mtx; - struct mbufq sc_snd; + struct ifnet *sc_ifp; device_t sc_dev; bus_space_tag_t sc_st; bus_space_handle_t sc_sh; + struct mtx sc_mtx; + struct callout watchdog_ch; int sc_tx_timer; @@ -152,7 +152,8 @@ struct rt2560_softc { struct rt2560_tx_radiotap_header sc_txtap; int sc_txtap_len; #define RT2560_F_INPUT_RUNNING 0x1 -#define RT2560_F_RUNNING 0x2 +#define RT2560_F_PRIO_OACTIVE 0x2 +#define RT2560_F_DATA_OACTIVE 0x4 int sc_flags; }; |