Commit 169bc5cb authored by Jes Sorensen's avatar Jes Sorensen Committed by Kalle Valo

rtl8xxxu: Correct txdesc40 gid definition

txdesc40 dword2 gid is a 6 bit field, not a single bit
Signed-off-by: default avatarJes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent 33f37249
...@@ -464,7 +464,7 @@ struct rtl8xxxu_txdesc40 { ...@@ -464,7 +464,7 @@ struct rtl8xxxu_txdesc40 {
#define TXDESC40_SPE_RPT BIT(19) #define TXDESC40_SPE_RPT BIT(19)
#define TXDESC_AMPDU_DENSITY_SHIFT 20 #define TXDESC_AMPDU_DENSITY_SHIFT 20
#define TXDESC40_BT_INT BIT(23) #define TXDESC40_BT_INT BIT(23)
#define TXDESC40_GID BIT(24) #define TXDESC40_GID_SHIFT 24
/* Word 3 */ /* Word 3 */
#define TXDESC40_USE_DRIVER_RATE BIT(8) #define TXDESC40_USE_DRIVER_RATE BIT(8)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment