xref: /wlan-dirver/qca-wifi-host-cmn/umac/cmn_services/interface_mgr/inc/wlan_if_mgr_api.h (revision 97f44cd39e4ff816eaa1710279d28cf6b9e65ad9)
1 /*
2  * Copyright (c) 2020, The Linux Foundation. All rights reserved.
3  *
4  * Permission to use, copy, modify, and/or distribute this software for any
5  * purpose with or without fee is hereby granted, provided that the above
6  * copyright notice and this permission notice appear in all copies.
7  *
8  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15  */
16 
17 /*
18  * DOC: contains interface manager public api
19  */
20 
21 #ifndef _WLAN_IF_MGR_API_H_
22 #define _WLAN_IF_MGR_API_H_
23 
24 #include "wlan_objmgr_psoc_obj.h"
25 #include "wlan_objmgr_vdev_obj.h"
26 #include "wlan_if_mgr_public_struct.h"
27 
28 /**
29  * if_mgr_deliver_event() - interface mgr event handler
30  * @vdev: vdev object
31  * @event: interface mangaer event
32  * @event_data: Interface mgr event data
33  *
34  * Return: QDF_STATUS
35  */
36 QDF_STATUS if_mgr_deliver_event(struct wlan_objmgr_vdev *vdev,
37 				enum wlan_if_mgr_evt event,
38 				struct if_mgr_event_data *event_data);
39 
40 #endif
41