Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4233f6c8 authored by Linux Build Service Account's avatar Linux Build Service Account
Browse files

Merge 2a640ed8 on remote branch

Change-Id: I064e66361453e413c7bf77c156afb1def63f8148
parents 20e0d383 2a640ed8
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -1179,7 +1179,9 @@ bool scm_filter_match(struct wlan_objmgr_psoc *psoc,
	 */
	if (!match && util_scan_entry_is_hidden_ap(db_entry)) {
		for (i = 0; i < filter->num_of_auth; i++) {
			if (filter->auth_type[i] == WLAN_AUTH_TYPE_OWE) {
			if (filter->auth_type[i] == WLAN_AUTH_TYPE_OWE &&
			    util_is_bssid_match(&filter->bssid_hint,
						&db_entry->bssid)) {
				match = true;
				break;
			}
+4 −0
Original line number Diff line number Diff line
/*
 * Copyright (c) 2016-2021 The Linux Foundation. All rights reserved.
 * Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved.
 *
 * Permission to use, copy, modify, and/or distribute this software for
 * any purpose with or without fee is hereby granted, provided that the
@@ -13276,6 +13277,9 @@ extract_time_sync_ftm_offset_event_tlv(wmi_unified_t wmi, void *buf,

	param->vdev_id = resp_event->vdev_id;
	param->num_qtime = param_buf->num_audio_sync_q_master_slave_times;
	if (param->num_qtime > FTM_TIME_SYNC_QTIME_PAIR_MAX)
		param->num_qtime = FTM_TIME_SYNC_QTIME_PAIR_MAX;

	q_pair = param_buf->audio_sync_q_master_slave_times;
	if (!q_pair) {
		WMI_LOGE("Invalid q_master_slave_times buffer");