diff options
author | Ranjani Sridharan <[email protected]> | 2019-05-09 15:10:25 -0500 |
---|---|---|
committer | Mark Brown <[email protected]> | 2019-05-13 12:37:28 +0100 |
commit | 8199a12037892f01e2cf5bedf5fbf08dff11b282 (patch) | |
tree | 7191c040ac1b7ae65462ff1b916b3d8648e68163 | |
parent | a69270d8bfeb35fc89d047ea6db803cd75a74f12 (diff) |
ASoC: SOF: fix error in verbose ipc command parsing
Remove the erroneous addition of "SET_VALUE" to the GLB
IPC command string.
Signed-off-by: Ranjani Sridharan <[email protected]>
Signed-off-by: Pierre-Louis Bossart <[email protected]>
Signed-off-by: Mark Brown <[email protected]>
-rw-r--r-- | sound/soc/sof/ipc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/sof/ipc.c b/sound/soc/sof/ipc.c index f0b9d3c53f6f..894e68cbd69d 100644 --- a/sound/soc/sof/ipc.c +++ b/sound/soc/sof/ipc.c @@ -115,7 +115,7 @@ static void ipc_log_header(struct device *dev, u8 *text, u32 cmd) } break; case SOF_IPC_GLB_COMP_MSG: - str = "GLB_COMP_MSG: SET_VALUE"; + str = "GLB_COMP_MSG"; switch (type) { case SOF_IPC_COMP_SET_VALUE: str2 = "SET_VALUE"; break; |