ASoC: SOF: Fix compilation when HDA_AUDIO_CODEC config is disabled
hda_codec_device_init() expects three parameters, not two.
Fixes: 3fd63658ca
("ASoC: Intel: Drop hdac_ext usage for codec device creation")
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Cezary Rojewski <cezary.rojewski@intel.com>
Acked-by: Mark Brown <broonie@kernel.org>
Link: https://lore.kernel.org/r/20220819124740.3564862-1-cezary.rojewski@intel.com
Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
da9d635f07
commit
1cda83e42b
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue