summaryrefslogtreecommitdiffstats
path: root/drivers/staging/rtl8821ae/compat.h
diff options
context:
space:
mode:
authorGreg Kroah-Hartman2014-09-30 00:02:19 +0200
committerGreg Kroah-Hartman2014-09-30 00:02:19 +0200
commit76272ab3f348d303eb31a5a061601ca8e0f9c5ce (patch)
tree49b17dd2d03838d80eb2b5aa97870058af0ca228 /drivers/staging/rtl8821ae/compat.h
parentstaging: et131x: Simplify for loop in et131x_init_send() (diff)
downloadkernel-qcow2-linux-76272ab3f348d303eb31a5a061601ca8e0f9c5ce.tar.gz
kernel-qcow2-linux-76272ab3f348d303eb31a5a061601ca8e0f9c5ce.tar.xz
kernel-qcow2-linux-76272ab3f348d303eb31a5a061601ca8e0f9c5ce.zip
staging: rtl8821ae: remove driver
There is now a "real" driver in the wireless tree for this hardware device, so remove the staging driver as it is no longer needed. Reported-by: Larry Finger <Larry.Finger@lwfinger.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8821ae/compat.h')
-rw-r--r--drivers/staging/rtl8821ae/compat.h68
1 files changed, 0 insertions, 68 deletions
diff --git a/drivers/staging/rtl8821ae/compat.h b/drivers/staging/rtl8821ae/compat.h
deleted file mode 100644
index ffb5f8b07bd0..000000000000
--- a/drivers/staging/rtl8821ae/compat.h
+++ /dev/null
@@ -1,68 +0,0 @@
-#ifndef __RTL_COMPAT_H__
-#define __RTL_COMPAT_H__
-
-#define RX_FLAG_MACTIME_MPDU RX_FLAG_MACTIME_START
-#define IEEE80211_KEY_FLAG_SW_MGMT IEEE80211_KEY_FLAG_SW_MGMT_TX
-
-struct ieee80211_mgmt_compat {
- __le16 frame_control;
- __le16 duration;
- u8 da[6];
- u8 sa[6];
- u8 bssid[6];
- __le16 seq_ctrl;
- union {
- struct {
- u8 category;
- union {
- struct {
- u8 action_code;
- u8 dialog_token;
- u8 status_code;
- u8 variable[0];
- } __attribute__ ((packed)) wme_action;
- struct{
- u8 action_code;
- u8 dialog_token;
- __le16 capab;
- __le16 timeout;
- __le16 start_seq_num;
- } __attribute__((packed)) addba_req;
- struct{
- u8 action_code;
- u8 dialog_token;
- __le16 status;
- __le16 capab;
- __le16 timeout;
- } __attribute__((packed)) addba_resp;
- struct{
- u8 action_code;
- __le16 params;
- __le16 reason_code;
- } __attribute__((packed)) delba;
- struct{
- u8 action_code;
- /* capab_info for open and confirm,
- * reason for close
- */
- __le16 aux;
- /* Followed in plink_confirm by status
- * code, AID and supported rates,
- * and directly by supported rates in
- * plink_open and plink_close
- */
- u8 variable[0];
- } __attribute__((packed)) plink_action;
- struct{
- u8 action_code;
- u8 variable[0];
- } __attribute__((packed)) mesh_action;
- struct {
- u8 action;
- u8 smps_control;
- } __attribute__ ((packed)) ht_smps;
- } u;
- } __attribute__ ((packed)) action;
- } u;
-} __attribute__ ((packed));
-#endif