qcacld-3.0: Update parameter of stop_roaming_callback

The last parameter of stop_roaming_callback is currently an
unsigned int, which does not match the function that is assigned
to this pointer, which has enum wlan_cm_rso_control_requestor.
Update the function pointer to have the correct parameter.

Change-Id: I2761293e6d87e9fcf9586d198a6e60f25ca2b51e
CRs-fixed: 2745188
This commit is contained in:
Lincoln Tran 2020-08-03 15:41:06 -07:00 committed by snandini
parent 8d1e83ae39
commit ac71ef1d26

View File

@ -646,7 +646,7 @@ typedef struct sAniSirLim {
(struct mac_context *mac, struct scheduler_msg *msg); (struct mac_context *mac, struct scheduler_msg *msg);
QDF_STATUS(*stop_roaming_callback) QDF_STATUS(*stop_roaming_callback)
(mac_handle_t mac, uint8_t session_id, uint8_t reason, (mac_handle_t mac, uint8_t session_id, uint8_t reason,
uint32_t requestor); enum wlan_cm_rso_control_requestor requestor);
uint8_t retry_packet_cnt; uint8_t retry_packet_cnt;
uint8_t beacon_probe_rsp_cnt_per_scan; uint8_t beacon_probe_rsp_cnt_per_scan;
wlan_scan_requester req_id; wlan_scan_requester req_id;