ad51e09fd1
Signed-off-by: Felix Fietkau <nbd@nbd.name>
35 lines
1,022 B
Diff
35 lines
1,022 B
Diff
From f670de32e58c1623ee30d7511e62e7b7e2164684 Mon Sep 17 00:00:00 2001
|
|
From: Jes Sorensen <Jes.Sorensen@redhat.com>
|
|
Date: Tue, 4 Oct 2016 12:40:22 -0400
|
|
Subject: [PATCH] rtl8xxxu: Add rpt_sel entry to struct rtl8xxxu_rxdesc16
|
|
|
|
The 8188e supports TX reports which will show up as an RX packet,
|
|
similar to how the gen2 parts handle it.
|
|
|
|
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
|
|
---
|
|
drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu.h | 6 ++++--
|
|
1 file changed, 4 insertions(+), 2 deletions(-)
|
|
|
|
--- a/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu.h
|
|
+++ b/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu.h
|
|
@@ -161,7 +161,8 @@ struct rtl8xxxu_rxdesc16 {
|
|
u32 htc:1;
|
|
u32 eosp:1;
|
|
u32 bssidfit:2;
|
|
- u32 reserved1:16;
|
|
+ u32 rpt_sel:2; /* 8188e */
|
|
+ u32 reserved1:14;
|
|
u32 unicastwake:1;
|
|
u32 magicwake:1;
|
|
|
|
@@ -219,7 +220,8 @@ struct rtl8xxxu_rxdesc16 {
|
|
|
|
u32 magicwake:1;
|
|
u32 unicastwake:1;
|
|
- u32 reserved1:16;
|
|
+ u32 reserved1:14;
|
|
+ u32 rpt_sel:2; /* 8188e */
|
|
u32 bssidfit:2;
|
|
u32 eosp:1;
|
|
u32 htc:1;
|