diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2020-03-03 13:18:58 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-03-03 14:00:02 +0000 |
commit | 613cea5935e83cb5a7d182ee3f98d54620e102e2 (patch) | |
tree | f69ec4d8b1349cc4df15eb21a3fbfc6cff600076 /sound/soc/sof/ipc.c | |
parent | 4b01618b624736fc7d74f150f623d11b17b7b288 (diff) | |
download | linux-613cea5935e83cb5a7d182ee3f98d54620e102e2.tar.bz2 |
ASoC: SOF: Fix snd_sof_ipc_stream_posn()
We're passing "&posn" instead of "posn" so it ends up corrupting
memory instead of doing something useful.
Fixes: 53e0c72d98ba ("ASoC: SOF: Add support for IPC IO between DSP and Host")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Reviewed-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
Link: https://lore.kernel.org/r/20200303101858.ytehbrivocyp3cnf@kili.mountain
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, 1 insertions, 1 deletions
diff --git a/sound/soc/sof/ipc.c b/sound/soc/sof/ipc.c index b63fc529b456..78aa1da7c7a9 100644 --- a/sound/soc/sof/ipc.c +++ b/sound/soc/sof/ipc.c @@ -499,7 +499,7 @@ int snd_sof_ipc_stream_posn(struct snd_soc_component *scomp, /* send IPC to the DSP */ err = sof_ipc_tx_message(sdev->ipc, - stream.hdr.cmd, &stream, sizeof(stream), &posn, + stream.hdr.cmd, &stream, sizeof(stream), posn, sizeof(*posn)); if (err < 0) { dev_err(sdev->dev, "error: failed to get stream %d position\n", |