qcacmn: Remove unused and duplicate members from vdev_start_params

Remove the unused fields from WMI unified vdev_start_params structure.
The channel information duplicated in vdev_start_params and
it sub structure channel is removed and all implementations
can use the channel sub structure directly.

Change-Id: I47cf4c4223111b6f564ec8336dbfcda4592e8e0c
CRs-Fixed: 2350505
This commit is contained in:
Vivek
2018-11-15 16:22:22 +05:30
committed by nshrivas
parent fba89964c1
commit 0844327b5e
3 changed files with 17 additions and 78 deletions

View File

@@ -403,10 +403,11 @@ static QDF_STATUS fake_vdev_start_cmd_tlv(wmi_unified_t wmi_handle,
"beacon interval %d dtim %d center_chan %d center_freq2 %d "
"max_txpow: 0x%x "
"Tx SS %d, Rx SS %d, ldpc_rx: %d, cac %d, regd %d, HE ops: %d",
__func__, (int)req->vdev_id, req->chan_freq, req->chan_mode,
(int)req->is_dfs, req->beacon_intval, req->dtim_period,
req->band_center_freq1, req->band_center_freq2,
req->max_txpow,
__func__, (int)req->vdev_id, req->channel.mhz,
req->channel.phy_mode,
(int)req->channel.dfs_set, req->beacon_intval, req->dtim_period,
req->channel.cfreq1, req->channel.cfreq2,
req->channel.maxregpower,
req->preferred_tx_streams, req->preferred_rx_streams,
(int)req->ldpc_rx_enabled, req->cac_duration_ms,
req->regdomain, req->he_ops);