Browse Source

qcacmn: Add new ssr reason code for enable irq failure

Add new ssr/hang reason code for enable irq failure.
This reason code will be used to log recovery reason when
enable irq failure is seen.

Change-Id: Idc126f9d313373a47cde02c5dfd0fc909970691f
CRs-Fixed: 3724895
Karthik Kantamneni 1 year ago
parent
commit
83938b4902
1 changed files with 3 additions and 1 deletions
  1. 3 1
      qdf/inc/qdf_types.h

+ 3 - 1
qdf/inc/qdf_types.h

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2014-2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021-2023 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2021-2024 Qualcomm Innovation Center, Inc. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -1614,6 +1614,7 @@ enum qdf_suspend_type {
  * timed out.
  * @QDF_VDEV_ACTIVE_SER_LINK_SWITCH_TIMEOUT: Active link switch cmd in
  * serialization timed out.
+ * @QDF_ENABLE_IRQ_FAILURE: Failed to enable IRQs
  */
 enum qdf_hang_reason {
 	QDF_REASON_UNSPECIFIED,
@@ -1658,6 +1659,7 @@ enum qdf_hang_reason {
 	QDF_VDEV_ACTIVE_SER_DISCONNECT_TIMEOUT,
 	QDF_VDEV_ACTIVE_SER_REASSOC_TIMEOUT,
 	QDF_VDEV_ACTIVE_SER_LINK_SWITCH_TIMEOUT,
+	QDF_ENABLE_IRQ_FAILURE,
 };
 
 /**