From: Ranjani Sridharan Date: Thu, 9 May 2019 20:10:25 +0000 (-0500) Subject: ASoC: SOF: fix error in verbose ipc command parsing X-Git-Tag: v5.2-rc5~19^2~1^2~46 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8199a12037892f01e2cf5bedf5fbf08dff11b282;p=thirdparty%2Fkernel%2Flinux.git 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 Signed-off-by: Pierre-Louis Bossart Signed-off-by: Mark Brown --- diff --git a/sound/soc/sof/ipc.c b/sound/soc/sof/ipc.c index f0b9d3c53f6f6..894e68cbd69d5 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;