From: Ping-Ke Shih <[email protected]>

Add rf mask definition (0x01, 0x02, 0x04, ...). which differ from the
rf path definition (0, 1, 2, ...). These masks will soon be needed in
the driver code, and it is cheaper to create them at compile time.

Signed-off-by: Ping-Ke Shih <[email protected]>
Signed-off-by: Larry Finger <[email protected]>
Cc: Yan-Hsuan Chuang <[email protected]>
Cc: Birming Chiu <[email protected]>
Cc: Shaofu <[email protected]>
Cc: Steven Ting <[email protected]>
---
 drivers/net/wireless/realtek/rtlwifi/wifi.h | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/drivers/net/wireless/realtek/rtlwifi/wifi.h 
b/drivers/net/wireless/realtek/rtlwifi/wifi.h
index 55fe365418be..42e77e07bbb3 100644
--- a/drivers/net/wireless/realtek/rtlwifi/wifi.h
+++ b/drivers/net/wireless/realtek/rtlwifi/wifi.h
@@ -277,6 +277,13 @@ enum radio_path {
        RF90_PATH_D = 3,
 };
 
+enum radio_mask {
+       RF_MASK_A = BIT(0),
+       RF_MASK_B = BIT(1),
+       RF_MASK_C = BIT(2),
+       RF_MASK_D = BIT(3),
+};
+
 enum regulation_txpwr_lmt {
        TXPWR_LMT_FCC = 0,
        TXPWR_LMT_MKK = 1,
@@ -570,6 +577,7 @@ enum ht_channel_width {
        HT_CHANNEL_WIDTH_20 = 0,
        HT_CHANNEL_WIDTH_20_40 = 1,
        HT_CHANNEL_WIDTH_80 = 2,
+       HT_CHANNEL_WIDTH_MAX,
 };
 
 /* Ref: 802.11i sepc D10.0 7.3.2.25.1
-- 
2.12.3

Reply via email to