qcacmn: Fix enum values of MGMT subtype field to correct value

MGMT frame's subtype enums are not correctly displayed on debugging tool
due to incorrect enum values.

CRs-Fixed: 2252180
Change-Id: Ib7e7111e43e95166e3ba87a758295948eb72ba0f
This commit is contained in:
Krunal Soni
2018-05-31 14:43:30 -07:00
zatwierdzone przez nshrivas
rodzic ffc6a0439c
commit f909a8a0af

Wyświetl plik

@@ -78,18 +78,18 @@ enum wifi_frm_type {
*/
enum mgmt_frm_subtype {
ASSOC_REQ = 0x00,
ASSOC_RESP = 0x10,
REASSOC_REQ = 0x20,
REASSOC_RESP = 0x30,
PROBE_REQ = 0x40,
PROBE_RESP = 0x50,
BEACON = 0x80,
ATIM = 0x90,
DISASSOC = 0xa0,
AUTH = 0xb0,
DEAUTH = 0xc0,
ACTION = 0xd0,
ACTION_NO_ACK = 0xe0,
ASSOC_RESP = 0x01,
REASSOC_REQ = 0x02,
REASSOC_RESP = 0x03,
PROBE_REQ = 0x04,
PROBE_RESP = 0x05,
BEACON = 0x08,
ATIM = 0x09,
DISASSOC = 0x0a,
AUTH = 0x0b,
DEAUTH = 0x0c,
ACTION = 0x0d,
ACTION_NO_ACK = 0x0e,
};
/**