summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSubhani Shaik <subhanis@codeaurora.org>2016-05-04 17:09:04 -0700
committerGerrit - the friendly Code Review server <code-review@localhost>2016-07-27 00:54:06 -0700
commit30d26ea960b6cb50d0931e933037db16532d576b (patch)
tree1ec90ffc4737ff7bc8d1122baa2f597735bf7eb1
parent07e40113cad467a2d51a224df5c6197265d39935 (diff)
downloadandroid_hardware_qcom_wlan-30d26ea960b6cb50d0931e933037db16532d576b.tar.gz
android_hardware_qcom_wlan-30d26ea960b6cb50d0931e933037db16532d576b.tar.bz2
android_hardware_qcom_wlan-30d26ea960b6cb50d0931e933037db16532d576b.zip
WifiHal: Add max queued transmit followup msgs
Modify NAN capabilities to include the max allowed transmit followup messages in firmware. Change-Id: I492af47749eedb3ad8b14b3ab79e9f90641fb05a CRs-Fixed: 1045260
-rw-r--r--qcwcn/wifi_hal/nan_i.h1
-rw-r--r--qcwcn/wifi_hal/nan_rsp.cpp2
2 files changed, 3 insertions, 0 deletions
diff --git a/qcwcn/wifi_hal/nan_i.h b/qcwcn/wifi_hal/nan_i.h
index bbff5cb..adb32d9 100644
--- a/qcwcn/wifi_hal/nan_i.h
+++ b/qcwcn/wifi_hal/nan_i.h
@@ -964,6 +964,7 @@ typedef struct PACKED
u32 max_ndi_interfaces;
u32 max_ndp_sessions;
u32 max_app_info_len;
+ u32 max_queued_transmit_followup_msgs;
} NanCapabilitiesRspMsg, *pNanCapabilitiesRspMsg;
/*
diff --git a/qcwcn/wifi_hal/nan_rsp.cpp b/qcwcn/wifi_hal/nan_rsp.cpp
index 294d82f..33a1a7f 100644
--- a/qcwcn/wifi_hal/nan_rsp.cpp
+++ b/qcwcn/wifi_hal/nan_rsp.cpp
@@ -244,6 +244,8 @@ int NanCommand::getNanResponse(transaction_id *id, NanResponseMsg *pRsp)
pFwRsp->max_ndp_sessions;
pRsp->body.nan_capabilities.max_app_info_len = \
pFwRsp->max_app_info_len;
+ pRsp->body.nan_capabilities.max_queued_transmit_followup_msgs = \
+ pFwRsp->max_queued_transmit_followup_msgs;
break;
}
default: