htc_hang_event.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. #ifndef HTC_HANG_EVENT_H
  17. #define HTC_HANG_EVENT_H
  18. #include "htc_internal.h"
  19. #ifdef WLAN_HANG_EVENT
  20. /**
  21. * htc_hang_event_notifier_register() - HTC hang event notifier register
  22. * @target: Target specific htc hangle
  23. *
  24. * This function registers htc layer notifier for the hang event notifier chain.
  25. *
  26. * Return: QDF_STATUS
  27. */
  28. QDF_STATUS htc_hang_event_notifier_register(HTC_TARGET *target);
  29. /**
  30. * htc_hang_event_notifier_unregister() - htc hang event notifier unregister
  31. *
  32. * This function unregisters htc layer notifier for the hang event notifier
  33. * chain.
  34. *
  35. * Return: QDF_STATUS
  36. */
  37. QDF_STATUS htc_hang_event_notifier_unregister(void);
  38. #else
  39. static inline QDF_STATUS htc_hang_event_notifier_register(HTC_TARGET *target)
  40. {
  41. return QDF_STATUS_SUCCESS;
  42. }
  43. static inline QDF_STATUS htc_hang_event_notifier_unregister(void)
  44. {
  45. return QDF_STATUS_SUCCESS;
  46. }
  47. #endif
  48. #endif