Commit c4528686 authored by Ping-Ke Shih's avatar Ping-Ke Shih Committed by Kalle Valo

rtlwifi: remove duplicate rx_packet_type definition

Move duplicate definitions from def.h of ic folder to wifi.h
Signed-off-by: default avatarPing-Ke Shih <pkshih@realtek.com>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent faa28006
...@@ -137,13 +137,6 @@ enum version_8188e { ...@@ -137,13 +137,6 @@ enum version_8188e {
VERSION_UNKNOWN = 0xFF, VERSION_UNKNOWN = 0xFF,
}; };
enum rx_packet_type {
NORMAL_RX,
TX_REPORT1,
TX_REPORT2,
HIS_REPORT,
};
enum rtl819x_loopback_e { enum rtl819x_loopback_e {
RTL819X_NO_LOOPBACK = 0, RTL819X_NO_LOOPBACK = 0,
RTL819X_MAC_LOOPBACK = 1, RTL819X_MAC_LOOPBACK = 1,
......
...@@ -47,14 +47,6 @@ enum version_8192e { ...@@ -47,14 +47,6 @@ enum version_8192e {
VERSION_UNKNOWN = 0xFF, VERSION_UNKNOWN = 0xFF,
}; };
enum rx_packet_type {
NORMAL_RX,
TX_REPORT1,
TX_REPORT2,
HIS_REPORT,
C2H_PACKET,
};
enum rtl_desc_qsel { enum rtl_desc_qsel {
QSLT_BK = 0x2, QSLT_BK = 0x2,
QSLT_BE = 0x0, QSLT_BE = 0x0,
......
...@@ -38,14 +38,6 @@ ...@@ -38,14 +38,6 @@
/* Currently only for RTL8723B */ /* Currently only for RTL8723B */
#define EXT_VENDOR_ID (BIT(18) | BIT(19)) #define EXT_VENDOR_ID (BIT(18) | BIT(19))
enum rx_packet_type {
NORMAL_RX,
TX_REPORT1,
TX_REPORT2,
HIS_REPORT,
C2H_PACKET,
};
enum rtl_desc_qsel { enum rtl_desc_qsel {
QSLT_BK = 0x2, QSLT_BK = 0x2,
QSLT_BE = 0x0, QSLT_BE = 0x0,
......
...@@ -332,14 +332,6 @@ enum rtl_desc_qsel { ...@@ -332,14 +332,6 @@ enum rtl_desc_qsel {
QSLT_CMD = 0x13, QSLT_CMD = 0x13,
}; };
enum rx_packet_type {
NORMAL_RX,
TX_REPORT1,
TX_REPORT2,
HIS_REPORT,
C2H_PACKET,
};
struct phy_sts_cck_8821ae_t { struct phy_sts_cck_8821ae_t {
u8 adc_pwdb_X[4]; u8 adc_pwdb_X[4];
u8 sq_rpt; u8 sq_rpt;
......
...@@ -1010,6 +1010,14 @@ enum dm_info_query { ...@@ -1010,6 +1010,14 @@ enum dm_info_query {
DM_INFO_SIZE, DM_INFO_SIZE,
}; };
enum rx_packet_type {
NORMAL_RX,
TX_REPORT1,
TX_REPORT2,
HIS_REPORT,
C2H_PACKET,
};
struct rtlwifi_tx_info { struct rtlwifi_tx_info {
int sn; int sn;
unsigned long send_time; unsigned long send_time;
......
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