소스 검색

qcacmn: Add new entry to wlan_rtpm_dbgid enum

Add a new entry RTPM_ID_SOC_IDLE_SHUTDOWN to the enum
wlan_rtpm_dbgid.

Change-Id: Idf2ee1655a0c353693749d76095ec65dfb08ba25
CRs-Fixed: 3120187
Aditya Kodukula 3 년 전
부모
커밋
4d53144b89
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      hif/inc/hif.h

+ 3 - 0
hif/inc/hif.h

@@ -1065,6 +1065,7 @@ hif_pm_wake_irq_type hif_pm_get_wake_irq_type(struct hif_opaque_softc *hif_ctx);
  * @RTPM_ID_DRIVER_UNLOAD: operation in driver unload
  * @RTPM_ID_CE_INTR_HANDLER: operation from ce interrupt handler
  * @RTPM_ID_WAKE_INTR_HANDLER: operation from wake interrupt handler
+ * @RTPM_ID_SOC_IDLE_SHUTDOWN: operation in soc idle shutdown
  */
 /* New value added to the enum must also be reflected in function
  *  rtpm_string_from_dbgid()
@@ -1086,6 +1087,7 @@ typedef enum {
 	RTPM_ID_DRIVER_UNLOAD,
 	RTPM_ID_CE_INTR_HANDLER,
 	RTPM_ID_WAKE_INTR_HANDLER,
+	RTPM_ID_SOC_IDLE_SHUTDOWN,
 
 	RTPM_ID_MAX,
 } wlan_rtpm_dbgid;
@@ -1113,6 +1115,7 @@ static inline char *rtpm_string_from_dbgid(wlan_rtpm_dbgid id)
 					"RTPM_ID_PM_STOP",
 					"RTPM_ID_CONN_DISCONNECT",
 					"RTPM_ID_SOC_REMOVE",
+					"RTPM_ID_SOC_IDLE_SHUTDOWN"
 					"RTPM_ID_DRIVER_UNLOAD",
 					"RTPM_ID_CE_INTR_HANDLER",
 					"RTPM_ID_WAKE_INTR_HANDLER",