diff options
author | Ranjani Sridharan <ranjani.sridharan@linux.intel.com> | 2019-05-09 22:10:25 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-05-13 13:37:28 +0200 |
commit | 8199a12037892f01e2cf5bedf5fbf08dff11b282 (patch) | |
tree | 7191c040ac1b7ae65462ff1b916b3d8648e68163 /sound | |
parent | ASoC: SOF: fix race in FW boot timeout handling (diff) | |
download | linux-8199a12037892f01e2cf5bedf5fbf08dff11b282.tar.xz linux-8199a12037892f01e2cf5bedf5fbf08dff11b282.zip |
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 <ranjani.sridharan@linux.intel.com>
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-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; |