Message ID | 20220818081751.2407066-1-yangyingliang@huawei.com (mailing list archive) |
---|---|
State | Accepted |
Commit | ecdb10df7e0d83bfd12fb8f71e28ea4753e3716a |
Headers | show |
Series | [-next] ASoC: SOF: ipc4-topology: fix wrong use of sizeof in sof_ipc4_widget_setup_comp_src() | expand |
On 18/08/2022 11:17, Yang Yingliang wrote: > It should be size of the struct sof_ipc4_src, not data pointer pass to > sof_update_ipc_object(). Good find, thank you. Acked-by: Peter Ujfalusi <peter.ujfalusi@linux.intel.com> > Fixes: b85f4fc40d56 ("ASoC: SOF: add ipc4 SRC module support") > Signed-off-by: Yang Yingliang <yangyingliang@huawei.com> > --- > sound/soc/sof/ipc4-topology.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/sound/soc/sof/ipc4-topology.c b/sound/soc/sof/ipc4-topology.c > index af072b484a60..c6abfaf5d532 100644 > --- a/sound/soc/sof/ipc4-topology.c > +++ b/sound/soc/sof/ipc4-topology.c > @@ -771,7 +771,7 @@ static int sof_ipc4_widget_setup_comp_src(struct snd_sof_widget *swidget) > goto err; > > ret = sof_update_ipc_object(scomp, src, SOF_SRC_TOKENS, swidget->tuples, > - swidget->num_tuples, sizeof(src), 1); > + swidget->num_tuples, sizeof(*src), 1); > if (ret) { > dev_err(scomp->dev, "Parsing SRC tokens failed\n"); > goto err;
On Thu, 18 Aug 2022 16:17:51 +0800, Yang Yingliang wrote: > It should be size of the struct sof_ipc4_src, not data pointer pass to > sof_update_ipc_object(). > > Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next Thanks! [1/1] ASoC: SOF: ipc4-topology: fix wrong use of sizeof in sof_ipc4_widget_setup_comp_src() commit: ecdb10df7e0d83bfd12fb8f71e28ea4753e3716a All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to Linus during the next merge window (or sooner if it is a bug fix), however if problems are discovered then the patch may be dropped or reverted. You may get further e-mails resulting from automated or manual testing and review of the tree, please engage with people reporting problems and send followup patches addressing any issues that are reported if needed. If any updates are required or you are submitting further changes they should be sent as incremental updates against current git, existing patches will not be replaced. Please add any relevant lists and maintainers to the CCs when replying to this mail. Thanks, Mark
diff --git a/sound/soc/sof/ipc4-topology.c b/sound/soc/sof/ipc4-topology.c index af072b484a60..c6abfaf5d532 100644 --- a/sound/soc/sof/ipc4-topology.c +++ b/sound/soc/sof/ipc4-topology.c @@ -771,7 +771,7 @@ static int sof_ipc4_widget_setup_comp_src(struct snd_sof_widget *swidget) goto err; ret = sof_update_ipc_object(scomp, src, SOF_SRC_TOKENS, swidget->tuples, - swidget->num_tuples, sizeof(src), 1); + swidget->num_tuples, sizeof(*src), 1); if (ret) { dev_err(scomp->dev, "Parsing SRC tokens failed\n"); goto err;
It should be size of the struct sof_ipc4_src, not data pointer pass to sof_update_ipc_object(). Fixes: b85f4fc40d56 ("ASoC: SOF: add ipc4 SRC module support") Signed-off-by: Yang Yingliang <yangyingliang@huawei.com> --- sound/soc/sof/ipc4-topology.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)