summaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/ath/wcn36xx/smd.h
diff options
context:
space:
mode:
authorAndy Green2015-11-10 09:25:53 +0100
committerKalle Valo2015-11-30 13:36:55 +0100
commit40ac77c8117b06501f3d190b614b008e66f68df2 (patch)
treeb17935bdee2590f03d70a0f20695f7fc21ec66b1 /drivers/net/wireless/ath/wcn36xx/smd.h
parentwcn36xx: swallow two wcn3620 IND messages (diff)
downloadkernel-qcow2-linux-40ac77c8117b06501f3d190b614b008e66f68df2.tar.gz
kernel-qcow2-linux-40ac77c8117b06501f3d190b614b008e66f68df2.tar.xz
kernel-qcow2-linux-40ac77c8117b06501f3d190b614b008e66f68df2.zip
wcn36xx: handle new hal response format
wcn3620 has a new message structure for the reply to some hal commands. This patch adds the struct and helper routine that uses it if the chip is wcn3620, or falls back to the old helper routine. We don't know what to do with the candidate list he sends back, but we can at least accept and ignore it nicely instead of dying. Signed-off-by: Andy Green <andy.green@linaro.org> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Diffstat (limited to 'drivers/net/wireless/ath/wcn36xx/smd.h')
-rw-r--r--drivers/net/wireless/ath/wcn36xx/smd.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/wcn36xx/smd.h b/drivers/net/wireless/ath/wcn36xx/smd.h
index 008d03423dbf..8361f9e3995b 100644
--- a/drivers/net/wireless/ath/wcn36xx/smd.h
+++ b/drivers/net/wireless/ath/wcn36xx/smd.h
@@ -44,6 +44,15 @@ struct wcn36xx_fw_msg_status_rsp {
u32 status;
} __packed;
+/* wcn3620 returns this for tigger_ba */
+
+struct wcn36xx_fw_msg_status_rsp_v2 {
+ u8 bss_id[6];
+ u32 status __packed;
+ u16 count_following_candidates __packed;
+ /* candidate list follows */
+};
+
struct wcn36xx_hal_ind_msg {
struct list_head list;
u8 *msg;