diff options
author | Curtis Malainey <[email protected]> | 2021-02-08 17:21:45 -0600 |
---|---|---|
committer | Mark Brown <[email protected]> | 2021-02-10 17:17:10 +0000 |
commit | a8f50cd9be7cc4c57f29c1390568225ebee90eda (patch) | |
tree | 6a65fc5f2a4a84c7f93a43ef52cd8e5a20c15915 | |
parent | d40dac7ae8c0f213ac1da7896c35ddc2c58419ab (diff) |
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 <[email protected]>
Signed-off-by: Curtis Malainey <[email protected]>
Signed-off-by: Pierre-Louis Bossart <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
-rw-r--r-- | sound/soc/sof/ipc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/soc/sof/ipc.c b/sound/soc/sof/ipc.c index fc13bb06dbf3..1bc3d6282f16 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; } |