[PATCH] ASoC: SOF: Fix compilation when HDA_AUDIO_CODEC config is disabled
Cezary Rojewski
cezary.rojewski at intel.com
Fri Aug 19 14:29:08 CEST 2022
hda_codec_device_init() expects three parameters, not two.
Fixes: f2183b08c81a ("ASoC: Intel: Drop hdac_ext usage for codec device creation")
Reported-by: kernel test robot <lkp at intel.com>
Signed-off-by: Cezary Rojewski <cezary.rojewski at intel.com>
---
sound/soc/sof/intel/hda-codec.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sound/soc/sof/intel/hda-codec.c b/sound/soc/sof/intel/hda-codec.c
index 73336648cd25..1e9afc48394c 100644
--- a/sound/soc/sof/intel/hda-codec.c
+++ b/sound/soc/sof/intel/hda-codec.c
@@ -213,7 +213,7 @@ static int hda_codec_probe(struct snd_sof_dev *sdev, int address,
put_device(&codec->core.dev);
}
#else
- codec = hda_codec_device_init(&hbus->core, address);
+ codec = hda_codec_device_init(&hbus->core, address, HDA_DEV_ASOC);
ret = PTR_ERR_OR_ZERO(codec);
#endif
--
2.25.1
More information about the Alsa-devel
mailing list