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

Commit fb2e1367 authored by Lincoln Tran's avatar Lincoln Tran Committed by Madan Koyyalamudi
Browse files

qcacmn: Update interface mangager event data

Add fields to the validate bss data struct to pass more information
to the interface manager when validating a candidate.

Change-Id: I82536585517da87ec0883c6010461d7ee929bd18
CRs-fixed: 2836749
parent 6b92b4b6
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
/*
 * Copyright (c) 2020, The Linux Foundation. All rights reserved.
 * Copyright (c) 2020-2021, The Linux Foundation. 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 above
@@ -57,10 +57,12 @@ enum wlan_if_mgr_evt {
 * struct validate_bss_data - interface manager validate candidate data
 * @peer_addr: MAC address of the BSS
 * @chan_freq: Frequency of the potential BSS connection
 * @beacon_interval: beacon interval of BSS
 */
struct validate_bss_data {
	struct qdf_mac_addr peer_addr;
	uint32_t chan_freq;
	qdf_freq_t chan_freq;
	uint16_t beacon_interval;
};

/**