aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/usb/if_uralreg.h
diff options
context:
space:
mode:
authorDamien Bergamini <damien@FreeBSD.org>2005-11-29 20:55:53 +0000
committerDamien Bergamini <damien@FreeBSD.org>2005-11-29 20:55:53 +0000
commit3d5dc80e4dbb5e421c2acc5ac6da28d987f423f1 (patch)
treee94bb8dba9330e4b957b17a03fb33a2346af856f /sys/dev/usb/if_uralreg.h
parent53b5c4604a1c7a923ab099ec2e025803f8aadd17 (diff)
downloadsrc-3d5dc80e4dbb5e421c2acc5ac6da28d987f423f1.tar.gz
src-3d5dc80e4dbb5e421c2acc5ac6da28d987f423f1.zip
o Send management frames at the lowest possible rate.
o Include rate in the Rx radiotap code. o Fix RSSI value in the Rx path. o Minor tweaks.
Notes
Notes: svn path=/head/; revision=152933
Diffstat (limited to 'sys/dev/usb/if_uralreg.h')
-rw-r--r--sys/dev/usb/if_uralreg.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/usb/if_uralreg.h b/sys/dev/usb/if_uralreg.h
index 3fc32eacf347..a26882bde35d 100644
--- a/sys/dev/usb/if_uralreg.h
+++ b/sys/dev/usb/if_uralreg.h
@@ -176,10 +176,11 @@ struct ural_tx_desc {
struct ural_rx_desc {
uint32_t flags;
#define RAL_RX_CRC_ERROR (1 << 5)
+#define RAL_RX_OFDM (1 << 6)
#define RAL_RX_PHY_ERROR (1 << 7)
- uint8_t rate;
uint8_t rssi;
+ uint8_t rate;
uint16_t reserved;
uint32_t iv;