Wifi: Add WLAN_MAC_6_0_BAND to the list of bands
This commit adds to the wlan_mac_band enum, the value for 6 GHz. Bug: 139354972 Test: Manual Change-Id: I7679223fd491110a77c1507d2c14fe9c83e62005
This commit is contained in:
parent
1bc3c577ac
commit
45b0a7322a
1 changed files with 3 additions and 1 deletions
|
@ -62,7 +62,9 @@ typedef enum {
|
|||
/* WLAN MAC Operates in 2.4 GHz Band */
|
||||
WLAN_MAC_2_4_BAND = 1 << 0,
|
||||
/* WLAN MAC Operates in 5 GHz Band */
|
||||
WLAN_MAC_5_0_BAND = 1 << 1
|
||||
WLAN_MAC_5_0_BAND = 1 << 1,
|
||||
/* WLAN MAC Operates in 6 GHz Band */
|
||||
WLAN_MAC_6_0_BAND = 1 << 2
|
||||
} wlan_mac_band;
|
||||
|
||||
typedef int wifi_radio;
|
||||
|
|
Loading…
Reference in a new issue