Message ID | 20220819124740.3564862-1-cezary.rojewski@intel.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [v2] ASoC: SOF: Fix compilation when HDA_AUDIO_CODEC config is disabled | expand |
On Fri, Aug 19, 2022 at 02:47:40PM +0200, Cezary Rojewski wrote: > hda_codec_device_init() expects three parameters, not two. Acked-by: Mark Brown <broonie@kernel.org>
On Fri, 19 Aug 2022 14:47:40 +0200, Cezary Rojewski wrote: > > 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 <lkp@intel.com> > Signed-off-by: Cezary Rojewski <cezary.rojewski@intel.com> > --- > > Changes in v2: > - adjusted SHA-1 provided in Fixes tag Thanks, applied. Takashi
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
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 <lkp@intel.com> Signed-off-by: Cezary Rojewski <cezary.rojewski@intel.com> --- Changes in v2: - adjusted SHA-1 provided in Fixes tag sound/soc/sof/intel/hda-codec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)