qcacmn: Perform cleanup of send_init_cmd

Currently, WMI is exposing two command ops
(send_init_cmd and init_send_cmd) for init
command purpose which is leading to data/code
redundeancy. Perform clenaup for send_init_cmd.

Change-Id: I8f31ab45392cf2afb3cc34c633ba83ea42a3a835
CRs-Fixed: 2138507
This commit is contained in:
Mukul Sharma
2017-11-02 17:42:36 +05:30
committed by snandini
parent 8aaf6f2653
commit dc5672f760
5 changed files with 17 additions and 196 deletions

View File

@@ -5901,6 +5901,8 @@ struct wmi_host_fw_abi_ver {
* @rx_batchmode: RX batch mode
* @tt_support: Thermal throttling support
* @atf_config: ATF config
* @mgmt_comp_evt_bundle_support: bundle support required for mgmt complete evt
* @tx_msdu_new_partition_id_support: new partiition id support for tx msdu
* @iphdr_pad_config: ipheader pad config
* @qwrap_config: Qwrap configuration
* @alloc_frag_desc_for_data_pkt: Frag desc for data
@@ -5922,6 +5924,7 @@ struct wmi_host_fw_abi_ver {
* @bpf_instruction_size:
* @max_bssid_rx_filters:
* @use_pdev_id:
* @max_num_dbs_scan_duty_cycle: max dbs can duty cycle value
*/
typedef struct {
uint32_t num_vdevs;
@@ -5963,7 +5966,9 @@ typedef struct {
uint32_t VO_Minfree;
uint32_t rx_batchmode;
uint32_t tt_support;
uint32_t atf_config;
uint32_t atf_config:1,
mgmt_comp_evt_bundle_support:1,
tx_msdu_new_partition_id_support:1;
uint32_t iphdr_pad_config;
uint32_t
qwrap_config:16,
@@ -5987,6 +5992,7 @@ typedef struct {
uint32_t bpf_instruction_size;
uint32_t max_bssid_rx_filters;
uint32_t use_pdev_id;
uint32_t max_num_dbs_scan_duty_cycle;
} target_resource_config;
/**