xref: /wlan-dirver/qca-wifi-host-cmn/umac/cmn_services/interface_mgr/inc/wlan_if_mgr_ucfg_api.h (revision 569cc296edb935e5bbb6f0a4bca30cab7856c360)
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_UCFG_API_H_
22 #define _WLAN_IF_MGR_UCFG_API_H_
23 
24 #include <scheduler_api.h>
25 #include <wlan_objmgr_psoc_obj.h>
26 #include <wlan_objmgr_pdev_obj.h>
27 #include <wlan_objmgr_vdev_obj.h>
28 #include "wlan_if_mgr_api.h"
29 
30 /**
31  * ucfg_if_mgr_deliver_event() - interface mgr event handler
32  * @vdev: vdev object
33  * @event: interface mangaer event
34  * @event_data: Interface mgr event data
35  *
36  * Return: QDF_STATUS
37  */
38 static inline
39 QDF_STATUS ucfg_if_mgr_deliver_event(struct wlan_objmgr_vdev *vdev,
40 				     enum wlan_if_mgr_evt event,
41 				     struct if_mgr_event_data *event_data)
42 {
43 	return if_mgr_deliver_event(vdev, event, event_data);
44 }
45 
46 #endif
47