]> www.infradead.org Git - users/hch/misc.git/commitdiff
ASoC: Intel: sof_sdw: Prevent jump to NULL add_sidecar callback
authorRichard Fitzgerald <rf@opensource.cirrus.com>
Fri, 19 Sep 2025 14:02:35 +0000 (15:02 +0100)
committerMark Brown <broonie@kernel.org>
Fri, 19 Sep 2025 14:11:47 +0000 (15:11 +0100)
In create_sdw_dailink() check that sof_end->codec_info->add_sidecar
is not NULL before calling it.

The original code assumed that if include_sidecar is true, the codec
on that link has an add_sidecar callback. But there could be other
codecs on the same link that do not have an add_sidecar callback.

Fixes: da5244180281 ("ASoC: Intel: sof_sdw: Add callbacks to register sidecar devices")
Signed-off-by: Richard Fitzgerald <rf@opensource.cirrus.com>
Link: https://patch.msgid.link/20250919140235.1071941-1-rf@opensource.cirrus.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/intel/boards/sof_sdw.c

index 28f03a5f29f7414e5dfbe00e77f262e3df580c53..c013e31d098e716df40363185515cb2fba7c50d9 100644 (file)
@@ -841,7 +841,7 @@ static int create_sdw_dailink(struct snd_soc_card *card,
                        (*codec_conf)++;
                }
 
-               if (sof_end->include_sidecar) {
+               if (sof_end->include_sidecar && sof_end->codec_info->add_sidecar) {
                        ret = sof_end->codec_info->add_sidecar(card, dai_links, codec_conf);
                        if (ret)
                                return ret;