diff options
Diffstat (limited to 'drivers/net/wireless/ath/ath6kl/wmi.h')
| -rw-r--r-- | drivers/net/wireless/ath/ath6kl/wmi.h | 10 | 
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath6kl/wmi.h b/drivers/net/wireless/ath/ath6kl/wmi.h index 190b2c4e382..996614038fd 100644 --- a/drivers/net/wireless/ath/ath6kl/wmi.h +++ b/drivers/net/wireless/ath/ath6kl/wmi.h @@ -1417,6 +1417,16 @@ struct wmi_ready_event_2 {  	u8 phy_cap;  } __packed; +/* WMI_PHY_CAPABILITY */ +enum wmi_phy_cap { +	WMI_11A_CAP = 0x01, +	WMI_11G_CAP = 0x02, +	WMI_11AG_CAP = 0x03, +	WMI_11AN_CAP = 0x04, +	WMI_11GN_CAP = 0x05, +	WMI_11AGN_CAP = 0x06, +}; +  /* Connect Event */  struct wmi_connect_event {  	union {  |