From 8915329a784e8916cff7224ff0d22b8e02e221a9 Mon Sep 17 00:00:00 2001 From: Jeff Johnson Date: Thu, 14 Jun 2018 11:06:33 -0700 Subject: [PATCH] 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 --- core/hdd/src/wlan_hdd_lpass.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/hdd/src/wlan_hdd_lpass.c b/core/hdd/src/wlan_hdd_lpass.c index 9671c8be54..d6f1b07026 100644 --- a/core/hdd/src/wlan_hdd_lpass.c +++ b/core/hdd/src/wlan_hdd_lpass.c @@ -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;