qcacmn: Fill correct mode information for deleted sta

80211 mode information is not getting filled correctly,
fill correct 802.11 mode information.

Change-Id: I7013db95c5010bdaac1f84209534f63d6c7f5719
CRs-Fixed: 2142110
This commit is contained in:
Ashish Kumar Dhanotiya
2017-11-13 11:25:58 +05:30
committed by snandini
부모 396cef7bcf
커밋 1872489c4c

파일 보기

@@ -569,20 +569,20 @@ enum qca_wlan_vendor_attr_get_station {
/**
* enum qca_wlan_802_11_mode - dot11 mode
* @QCA_WLAN_802_11_MODE_INVALID: Invalid dot11 mode
* @QCA_WLAN_802_11_MODE_11A: mode A
* @QCA_WLAN_802_11_MODE_11B: mode B
* @QCA_WLAN_802_11_MODE_11G: mode G
* @QCA_WLAN_802_11_MODE_11N: mode N
* @QCA_WLAN_802_11_MODE_11A: mode A
* @QCA_WLAN_802_11_MODE_11AC: mode AC
* @QCA_WLAN_802_11_MODE_INVALID: Invalid dot11 mode
*/
enum qca_wlan_802_11_mode {
QCA_WLAN_802_11_MODE_INVALID,
QCA_WLAN_802_11_MODE_11A,
QCA_WLAN_802_11_MODE_11B,
QCA_WLAN_802_11_MODE_11G,
QCA_WLAN_802_11_MODE_11N,
QCA_WLAN_802_11_MODE_11A,
QCA_WLAN_802_11_MODE_11AC,
QCA_WLAN_802_11_MODE_INVALID,
};
/**