svn commit: r311948 - head/sys/dev/rtwn/rtl8192c
Andriy Voskoboinyk
avos at FreeBSD.org
Wed Jan 11 23:32:41 UTC 2017
Author: avos
Date: Wed Jan 11 23:32:40 2017
New Revision: 311948
URL: https://svnweb.freebsd.org/changeset/base/311948
Log:
rtwn: fix R92C_TXDW4_RTSRATE_M definition (0x3f -> 0x1f)
Submitted by: kevlo
Modified:
head/sys/dev/rtwn/rtl8192c/r92c_tx_desc.h
Modified: head/sys/dev/rtwn/rtl8192c/r92c_tx_desc.h
==============================================================================
--- head/sys/dev/rtwn/rtl8192c/r92c_tx_desc.h Wed Jan 11 23:05:29 2017 (r311947)
+++ head/sys/dev/rtwn/rtl8192c/r92c_tx_desc.h Wed Jan 11 23:32:40 2017 (r311948)
@@ -68,7 +68,7 @@ struct r92c_tx_desc {
uint16_t txdseq;
uint32_t txdw4;
-#define R92C_TXDW4_RTSRATE_M 0x0000003f
+#define R92C_TXDW4_RTSRATE_M 0x0000001f
#define R92C_TXDW4_RTSRATE_S 0
#define R92C_TXDW4_SEQ_SEL_M 0x00000040
#define R92C_TXDW4_SEQ_SEL_S 6
More information about the svn-src-all
mailing list