qcacmn: Add tlv formation of scan commands

Add tlv formation of scan related commands to common wmi layer.

Change-Id: If7fd18f43cb8b7bad6779bc883bf2ba9395f7c6d
CRs-Fixed: 982330
This commit is contained in:
Govind Singh
2016-02-26 17:50:39 +05:30
parent 4ec6ff9760
commit bffe4de070
5 changed files with 37 additions and 22 deletions

View File

@@ -151,23 +151,18 @@ int32_t (*send_packet_log_enable_cmd)(wmi_unified_t wmi_handle,
struct packet_enable_params *param);
int32_t (*send_beacon_send_cmd)(wmi_unified_t wmi_handle,
uint8_t macaddr[IEEE80211_ADDR_LEN],
struct beacon_params *param);
int32_t (*send_peer_assoc_cmd)(wmi_unified_t wmi_handle,
uint8_t macaddr[IEEE80211_ADDR_LEN],
struct peer_assoc_params *param);
int32_t (*send_scan_start_cmd)(wmi_unified_t wmi_handle,
uint8_t macaddr[IEEE80211_ADDR_LEN],
struct scan_start_params *param);
int32_t (*send_scan_stop_cmd)(wmi_unified_t wmi_handle,
uint8_t macaddr[IEEE80211_ADDR_LEN],
struct scan_stop_params *param);
int32_t (*send_scan_chan_list_cmd)(wmi_unified_t wmi_handle,
uint8_t macaddr[IEEE80211_ADDR_LEN],
struct scan_chan_list_params *param);
};