diff options
author | adrian <adrian@FreeBSD.org> | 2015-09-22 02:48:59 +0000 |
---|---|---|
committer | adrian <adrian@FreeBSD.org> | 2015-09-22 02:48:59 +0000 |
commit | 686e86409748263ca945584509952e2d9c6a476b (patch) | |
tree | b207c6a0a67a9a7e82beeb4f4960064a74f7baa7 /sys/dev/usb/wlan/if_uathvar.h | |
parent | 5672e10cea195094b9e180a6fb22537a6f8f588e (diff) | |
download | FreeBSD-src-686e86409748263ca945584509952e2d9c6a476b.zip FreeBSD-src-686e86409748263ca945584509952e2d9c6a476b.tar.gz |
net80211 & wireless drivers: remove duplicate defines (noop)
- IEEE80211_DIR_DSTODS(wh) -> IEEE80211_IS_DSTODS(wh).
- N(a) -> nitems(a).
- Remove LE_READ_2(p)/LE_READ_4(p) definitions (and include ieee80211_input.h instead).
- <drvname>_TXOP_TO_US(txop) -> IEEE80211_TXOP_TO_US(txop).
- Put IEEE80211_RV(v) into ieee80211_proto.h and remove local RV(v) definitions.
Submitted by: Andriy Voskoboinyk <s3erios@gmail.com>
Differential Revision: https://reviews.freebsd.org/D3705
Diffstat (limited to 'sys/dev/usb/wlan/if_uathvar.h')
-rw-r--r-- | sys/dev/usb/wlan/if_uathvar.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/dev/usb/wlan/if_uathvar.h b/sys/dev/usb/wlan/if_uathvar.h index 56b5ba3..4b4d9fc 100644 --- a/sys/dev/usb/wlan/if_uathvar.h +++ b/sys/dev/usb/wlan/if_uathvar.h @@ -102,7 +102,6 @@ struct uath_wme_settings { uint8_t logcwmin; uint8_t logcwmax; uint16_t txop; -#define UATH_TXOP_TO_US(txop) ((txop) << 5) uint8_t acm; }; |