From: Cezary Rojewski Date: Fri, 19 Aug 2022 12:47:40 +0000 (+0200) Subject: ASoC: SOF: Fix compilation when HDA_AUDIO_CODEC config is disabled X-Git-Tag: v6.6.17~6351^2~17^2~67 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1cda83e42bf66beb06bf61c7a78951ec0c028898;p=platform%2Fkernel%2Flinux-rpi.git ASoC: SOF: Fix compilation when HDA_AUDIO_CODEC config is disabled hda_codec_device_init() expects three parameters, not two. Fixes: 3fd63658caed ("ASoC: Intel: Drop hdac_ext usage for codec device creation") Reported-by: kernel test robot Signed-off-by: Cezary Rojewski Acked-by: Mark Brown Link: https://lore.kernel.org/r/20220819124740.3564862-1-cezary.rojewski@intel.com Signed-off-by: Takashi Iwai --- diff --git a/sound/soc/sof/intel/hda-codec.c b/sound/soc/sof/intel/hda-codec.c index 7333664..1e9afc4 100644 --- a/sound/soc/sof/intel/hda-codec.c +++ b/sound/soc/sof/intel/hda-codec.c @@ -213,7 +213,7 @@ out: 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