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
2022-01-28 15:39:09 -08:00
коммит произвёл Madan Koyyalamudi
родитель 5f8681ff1e
Коммит 4d53144b89

Просмотреть файл

@@ -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",