qcacld-3.0: Replace blacklist abbreviation bl for dl

Replace blacklist abbreviation bl for denylist dl.

Change-Id: Ibbefba66f27cde8711c8c171f821cf668ba350ba
CRs-Fixed: 3153291
This commit is contained in:
chunquan
2022-03-17 16:29:41 +08:00
committed by Madan Koyyalamudi
parent 6b9d61cf4d
commit 8f4ed84d9d
5 changed files with 9 additions and 9 deletions

View File

@@ -385,8 +385,8 @@ wmi_extract_btm_denylist_event(wmi_unified_t wmi_handle,
uint32_t data_len,
struct roam_denylist_event **dst_list)
{
if (wmi_handle->ops->extract_btm_bl_event)
return wmi_handle->ops->extract_btm_bl_event(wmi_handle,
if (wmi_handle->ops->extract_btm_dl_event)
return wmi_handle->ops->extract_btm_dl_event(wmi_handle,
event,
data_len,
dst_list);

View File

@@ -3361,7 +3361,7 @@ void wmi_roam_offload_attach_tlv(wmi_unified_t wmi_handle)
ops->extract_roam_sync_event = extract_roam_sync_event_tlv;
ops->extract_roam_sync_frame_event = extract_roam_sync_frame_event_tlv;
ops->extract_roam_event = extract_roam_event_tlv;
ops->extract_btm_bl_event = extract_btm_denylist_event;
ops->extract_btm_dl_event = extract_btm_denylist_event;
ops->extract_vdev_disconnect_event = extract_vdev_disconnect_event_tlv;
ops->extract_roam_scan_chan_list = extract_roam_scan_chan_list_tlv;
ops->extract_roam_stats_event = extract_roam_stats_event_tlv;