xref: /wlan-driver/qca-wifi-host-cmn/wmi/inc/wmi_hang_event.h (revision 5113495b16420b49004c444715d2daae2066e7dc)
1*5113495bSYour Name /*
2*5113495bSYour Name  * Copyright (c) 2020, The Linux Foundation. All rights reserved.
3*5113495bSYour Name  * Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved.
4*5113495bSYour Name  *
5*5113495bSYour Name  * Permission to use, copy, modify, and/or distribute this software for any
6*5113495bSYour Name  * purpose with or without fee is hereby granted, provided that the above
7*5113495bSYour Name  * copyright notice and this permission notice appear in all copies.
8*5113495bSYour Name  *
9*5113495bSYour Name  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10*5113495bSYour Name  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11*5113495bSYour Name  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12*5113495bSYour Name  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13*5113495bSYour Name  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14*5113495bSYour Name  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15*5113495bSYour Name  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16*5113495bSYour Name  */
17*5113495bSYour Name #ifndef WMI_HANG_EVENT_H
18*5113495bSYour Name #define WMI_HANG_EVENT_H
19*5113495bSYour Name 
20*5113495bSYour Name #include <wmi_unified_priv.h>
21*5113495bSYour Name #ifdef WLAN_HANG_EVENT
22*5113495bSYour Name 
23*5113495bSYour Name /**
24*5113495bSYour Name  * wmi_hang_event_notifier_register() - wmi hang event notifier register
25*5113495bSYour Name  * @wmi_hdl: WMI Handle
26*5113495bSYour Name  *
27*5113495bSYour Name  * This function registers wmi layer notifier for the hang event notifier chain.
28*5113495bSYour Name  *
29*5113495bSYour Name  * Return: QDF_STATUS
30*5113495bSYour Name  */
31*5113495bSYour Name QDF_STATUS wmi_hang_event_notifier_register(struct wmi_unified *wmi_hdl);
32*5113495bSYour Name 
33*5113495bSYour Name /**
34*5113495bSYour Name  * wmi_hang_event_notifier_unregister() - wmi hang event notifier unregister
35*5113495bSYour Name  *
36*5113495bSYour Name  * This function unregisters wmi layer notifier for the hang event notifier
37*5113495bSYour Name  * chain.
38*5113495bSYour Name  *
39*5113495bSYour Name  * Return: QDF_STATUS
40*5113495bSYour Name  */
41*5113495bSYour Name QDF_STATUS wmi_hang_event_notifier_unregister(void);
42*5113495bSYour Name #else
43*5113495bSYour Name static inline
wmi_hang_event_notifier_register(struct wmi_unified * wmi_hdl)44*5113495bSYour Name QDF_STATUS wmi_hang_event_notifier_register(struct wmi_unified *wmi_hdl)
45*5113495bSYour Name {
46*5113495bSYour Name 	return 0;
47*5113495bSYour Name }
48*5113495bSYour Name 
wmi_hang_event_notifier_unregister(void)49*5113495bSYour Name static inline QDF_STATUS wmi_hang_event_notifier_unregister(void)
50*5113495bSYour Name {
51*5113495bSYour Name 	return 0;
52*5113495bSYour Name }
53*5113495bSYour Name #endif
54*5113495bSYour Name #endif
55