aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/iwm
diff options
context:
space:
mode:
authorAdrian Chadd <adrian@FreeBSD.org>2015-10-12 05:21:51 +0000
committerAdrian Chadd <adrian@FreeBSD.org>2015-10-12 05:21:51 +0000
commit4f4a7a03cea15a671284f9c06ada80755c994df6 (patch)
tree89d9af1dbac1f7b85fbbad15b7590d4d8d1a2a70 /sys/dev/iwm
parentc0658ced70dc9dad95f7276d5ed7cf081343e86f (diff)
downloadsrc-4f4a7a03cea15a671284f9c06ada80755c994df6.tar.gz
src-4f4a7a03cea15a671284f9c06ada80755c994df6.zip
net80211 drivers: eliminate any references to sc_rxtap_len/sc_txtap_len (never used here)
Submitted by: <s3erios@gmail.com> Differential Revision: https://reviews.freebsd.org/D3776
Notes
Notes: svn path=/head/; revision=289168
Diffstat (limited to 'sys/dev/iwm')
-rw-r--r--sys/dev/iwm/if_iwmvar.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/dev/iwm/if_iwmvar.h b/sys/dev/iwm/if_iwmvar.h
index ead690462438..9434b838fce1 100644
--- a/sys/dev/iwm/if_iwmvar.h
+++ b/sys/dev/iwm/if_iwmvar.h
@@ -496,14 +496,12 @@ struct iwm_softc {
uint8_t pad[IEEE80211_RADIOTAP_HDRLEN];
} sc_rxtapu;
#define sc_rxtap sc_rxtapu.th
- int sc_rxtap_len;
union {
struct iwm_tx_radiotap_header th;
uint8_t pad[IEEE80211_RADIOTAP_HDRLEN];
} sc_txtapu;
#define sc_txtap sc_txtapu.th
- int sc_txtap_len;
int sc_max_rssi;
};