From: Curtis Malainey Date: Mon, 8 Feb 2021 23:21:45 +0000 (-0600) Subject: ASoC: SOF: add missing pm debug X-Git-Tag: v5.12-rc1~133^2~1^2^2~17^2~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a8f50cd9be7cc4c57f29c1390568225ebee90eda;p=thirdparty%2Fkernel%2Flinux.git ASoC: SOF: add missing pm debug Type is not part of debugging parse code. Add it so unknown types don't show up while debugging Reviewed-by: Ranjani Sridharan Signed-off-by: Curtis Malainey Signed-off-by: Pierre-Louis Bossart Link: https://lore.kernel.org/r/20210208232149.58899-2-pierre-louis.bossart@linux.intel.com Signed-off-by: Mark Brown --- diff --git a/sound/soc/sof/ipc.c b/sound/soc/sof/ipc.c index fc13bb06dbf39..1bc3d6282f16d 100644 --- a/sound/soc/sof/ipc.c +++ b/sound/soc/sof/ipc.c @@ -106,6 +106,8 @@ static void ipc_log_header(struct device *dev, u8 *text, u32 cmd) str2 = "CLK_REQ"; break; case SOF_IPC_PM_CORE_ENABLE: str2 = "CORE_ENABLE"; break; + case SOF_IPC_PM_GATE: + str2 = "GATE"; break; default: str2 = "unknown type"; break; }