diff options
author | Curtis Malainey <cujomalainey@chromium.org> | 2021-02-08 17:21:45 -0600 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2021-02-10 17:17:10 +0000 |
commit | a8f50cd9be7cc4c57f29c1390568225ebee90eda (patch) | |
tree | 6a65fc5f2a4a84c7f93a43ef52cd8e5a20c15915 /sound/soc/sof/ipc.c | |
parent | d40dac7ae8c0f213ac1da7896c35ddc2c58419ab (diff) | |
download | linux-a8f50cd9be7cc4c57f29c1390568225ebee90eda.tar.bz2 |
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 <ranjani.sridharan@linux.intel.com>
Signed-off-by: Curtis Malainey <cujomalainey@chromium.org>
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Link: https://lore.kernel.org/r/20210208232149.58899-2-pierre-louis.bossart@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/sof/ipc.c')
-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; } |