From e89385bd592ee4603535e7060fba1d65296bbca6 Mon Sep 17 00:00:00 2001 From: Sathish Kumar Date: Tue, 25 Oct 2016 18:47:52 +0530 Subject: [PATCH] qcacmn: Adapt WIN driver with FW abstraction changes Recently added changes for coexistence of WIN/MCL TLV implementation through CL I6868c288a43fd3afb19c84b8a9d4ef0dfbee5c94 require adaptations in QCA WIN driver to successfully compile. Add required definitions in WMI layer to adapt WIN driver to changes made for coexistence. Change-Id: I99550ca10553d8096b8967249c006bac4e0c62df --- wmi_unified_non_tlv.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/wmi_unified_non_tlv.c b/wmi_unified_non_tlv.c index f74de83736..65c5385db0 100644 --- a/wmi_unified_non_tlv.c +++ b/wmi_unified_non_tlv.c @@ -36,8 +36,8 @@ #include "wmi_unified_priv.h" #if defined(WMI_NON_TLV_SUPPORT) || defined(WMI_TLV_AND_NON_TLV_SUPPORT) -#include "legacy/wmi.h" -#include "legacy/wmi_unified.h" +#include "wmi.h" +#include "wmi_unified.h" /** * send_vdev_create_cmd_non_tlv() - send VDEV create command to fw * @wmi_handle: wmi handle @@ -8108,6 +8108,8 @@ static void populate_vdev_param_non_tlv(uint32_t *vdev_param) vdev_param[wmi_vdev_param_dtim_enable_cts] = WMI_VDEV_PARAM_DTIM_ENABLE_CTS; vdev_param[wmi_vdev_param_sta_kickout] = WMI_VDEV_PARAM_STA_KICKOUT; + vdev_param[wmi_vdev_param_capabilities] = + WMI_VDEV_PARAM_CAPABILITIES; } #endif