|
@@ -517,35 +517,19 @@ rrm_process_neighbor_report_req(struct mac_context *mac,
|
|
|
return status;
|
|
|
}
|
|
|
|
|
|
-/**
|
|
|
- * rrm_get_country_code_from_connected_profile() - Get country code
|
|
|
- * from connected profile
|
|
|
- * @mac: Mac context
|
|
|
- * @pe_session: pe session
|
|
|
- * @country_code: country code
|
|
|
- *
|
|
|
- * Return: void
|
|
|
- */
|
|
|
-static inline void
|
|
|
-rrm_get_country_code_from_connected_profile(
|
|
|
- struct mac_context *mac,
|
|
|
- struct pe_session *pe_session,
|
|
|
- uint8_t country_code[WNI_CFG_COUNTRY_CODE_LEN])
|
|
|
+void rrm_get_country_code_from_connected_profile(struct mac_context *mac,
|
|
|
+ uint8_t vdev_id,
|
|
|
+ uint8_t *country_code)
|
|
|
{
|
|
|
- uint8_t id;
|
|
|
+ QDF_STATUS status;
|
|
|
|
|
|
- qdf_mem_zero(country_code, sizeof(country_code[0]) *
|
|
|
- WNI_CFG_COUNTRY_CODE_LEN);
|
|
|
- if (!pe_session) {
|
|
|
- pe_err("pe_session is NULL");
|
|
|
- return;
|
|
|
- }
|
|
|
- id = pe_session->smeSessionId;
|
|
|
- if (!CSR_IS_SESSION_VALID(mac, id)) {
|
|
|
- pe_err("smeSessionId %d is invalid", id);
|
|
|
- return;
|
|
|
- }
|
|
|
- wlan_reg_read_current_country(mac->psoc, country_code);
|
|
|
+ status = wlan_cm_get_country_code(mac->pdev, vdev_id, country_code);
|
|
|
+
|
|
|
+ if (QDF_IS_STATUS_ERROR(status))
|
|
|
+ qdf_mem_zero(country_code, REG_ALPHA2_LEN + 1);
|
|
|
+
|
|
|
+ if (!country_code[0])
|
|
|
+ wlan_reg_read_current_country(mac->psoc, country_code);
|
|
|
if (!country_code[0])
|
|
|
country_code[2] = OP_CLASS_GLOBAL;
|
|
|
}
|
|
@@ -722,7 +706,7 @@ rrm_process_beacon_report_req(struct mac_context *mac,
|
|
|
return eRRM_FAILURE;
|
|
|
}
|
|
|
|
|
|
- rrm_get_country_code_from_connected_profile(mac, pe_session,
|
|
|
+ rrm_get_country_code_from_connected_profile(mac, pe_session->vdev_id,
|
|
|
country);
|
|
|
psbrr->channel_info.chan_num =
|
|
|
pBeaconReq->measurement_request.Beacon.channel;
|