mirror of
https://github.com/torvalds/linux.git
synced 2024-11-29 15:41:36 +00:00
ASoC: Intel: sof_sdw_rt5682: use dai parameter
The dai is passed from the parameter. We don't need to find the dai by name. Reviewed-by: Péter Ujfalusi <peter.ujfalusi@linux.intel.com> Signed-off-by: Bard Liao <yung-chuan.liao@linux.intel.com> Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Link: https://msgid.link/r/20240527193552.165567-4-pierre-louis.bossart@linux.intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
1bf95876e6
commit
044413afbc
@ -35,24 +35,15 @@ static struct snd_soc_jack_pin rt5682_jack_pins[] = {
|
||||
},
|
||||
};
|
||||
|
||||
static const char * const jack_codecs[] = {
|
||||
"rt5682"
|
||||
};
|
||||
|
||||
int rt5682_rtd_init(struct snd_soc_pcm_runtime *rtd, struct snd_soc_dai *dai)
|
||||
{
|
||||
struct snd_soc_card *card = rtd->card;
|
||||
struct mc_private *ctx = snd_soc_card_get_drvdata(card);
|
||||
struct snd_soc_dai *codec_dai;
|
||||
struct snd_soc_component *component;
|
||||
struct snd_soc_jack *jack;
|
||||
int ret;
|
||||
|
||||
codec_dai = get_codec_dai_by_name(rtd, jack_codecs, ARRAY_SIZE(jack_codecs));
|
||||
if (!codec_dai)
|
||||
return -EINVAL;
|
||||
|
||||
component = codec_dai->component;
|
||||
component = dai->component;
|
||||
card->components = devm_kasprintf(card->dev, GFP_KERNEL,
|
||||
"%s hs:rt5682",
|
||||
card->components);
|
||||
|
Loading…
Reference in New Issue
Block a user