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

Commit 5b45cf1e authored by Piyush Dhyani's avatar Piyush Dhyani Committed by Gerrit - the friendly Code Review server
Browse files

msm: ipa: Add if_index in ipa_wlan_msg struct



Add if_index in ipa_wlan_msg struct to receive
the interface index from wlan driver.

Change-Id: I50a43ff4529b29a41753298e87fd84a0dfc9a969
Signed-off-by: default avatarPiyush Dhyani <quic_pdhyani@quicinc.com>
parent 862b38de
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -2742,6 +2742,7 @@ struct ipa_msg_meta {
 * struct ipa_wlan_msg - To hold information about wlan client
 * @name: name of the wlan interface
 * @mac_addr: mac address of wlan client
 * @if_index: netdev interface index
 *
 * wlan drivers need to pass name of wlan iface and mac address of
 * wlan client along with ipa_wlan_event, whenever a wlan client is
@@ -2750,6 +2751,7 @@ struct ipa_msg_meta {
struct ipa_wlan_msg {
	char name[IPA_RESOURCE_NAME_MAX];
	uint8_t mac_addr[IPA_MAC_ADDR_SIZE];
	int16_t if_index;
};

/**