qcacld-3.0: Use mac_handle_t in wlan_hdd_lpass
Change "qcacld-3.0: Introduce mac_handle_t" introduced a modern name for what was previously called the tHalHandle. Transition wlan_hdd_lpass to use the new naming. Change-Id: Id5ffe841fa4d81a07756c7e9f9d9873d2ba921cb CRs-Fixed: 2262585
This commit is contained in:
@@ -46,7 +46,7 @@ static void wlan_hdd_get_channel_info(struct hdd_context *hdd_ctx,
|
||||
uint32_t reg_info_2;
|
||||
QDF_STATUS status = QDF_STATUS_E_FAILURE;
|
||||
|
||||
status = sme_get_reg_info(hdd_ctx->hHal, chan_id,
|
||||
status = sme_get_reg_info(hdd_ctx->mac_handle, chan_id,
|
||||
®_info_1, ®_info_2);
|
||||
if (status != QDF_STATUS_SUCCESS)
|
||||
return;
|
||||
@@ -126,7 +126,7 @@ static int wlan_hdd_gen_wlan_status_pack(struct wlan_status_data *data,
|
||||
wlan_hdd_get_channel_info(hdd_ctx, chan_info, chan_id);
|
||||
}
|
||||
|
||||
sme_get_country_code(hdd_ctx->hHal, data->country_code, &buflen);
|
||||
sme_get_country_code(hdd_ctx->mac_handle, data->country_code, &buflen);
|
||||
data->is_on = is_on;
|
||||
data->vdev_id = adapter->session_id;
|
||||
data->vdev_mode = adapter->device_mode;
|
||||
|
Reference in New Issue
Block a user