Send beacon frame in wmi_roam_invoke_cmd to firmware This helps firmware skip scan to connect to requested BSSID. Change-Id: I5c6e375309dcb3bdd6430a3d501bade5cfe2e88d CRs-Fixed: 1116901
@@ -3365,11 +3365,15 @@ struct wmi_unit_test_cmd {
* @vdev_id: vdev id
* @bssid: mac address
* @channel: channel
+ * @frame_len: frame length, includs mac header, fixed params and ies
+ * @frame_buf: buffer contaning probe response or beacon
*/
struct wmi_roam_invoke_cmd {
uint32_t vdev_id;
uint8_t bssid[IEEE80211_ADDR_LEN];
uint32_t channel;
+ uint32_t frame_len;
+ uint8_t *frame_buf;
};
/**