diff options
author | Kuninori Morimoto <[email protected]> | 2019-12-13 09:55:44 +0900 |
---|---|---|
committer | Mark Brown <[email protected]> | 2019-12-16 12:02:48 +0000 |
commit | b9fc10027cf37014d159deba69f0aad926496554 (patch) | |
tree | cd7d2f35a56ac49520457c1fe850f7ac32afdaf1 | |
parent | 1762d3a5fd69ad3b38713f9e6144c3e32279d8bf (diff) |
ASoC: samsung: speyside: use snd_soc_dai_link_component for codec_conf
We can use snd_soc_dai_link_component to specify codec_conf.
Let's use it.
Signed-off-by: Kuninori Morimoto <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Reviewed-by: Pierre-Louis Bossart <[email protected]>
Reviewed-by: Ranjani Sridharan <[email protected]>
Signed-off-by: Mark Brown <[email protected]>
-rw-r--r-- | sound/soc/samsung/speyside.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/samsung/speyside.c b/sound/soc/samsung/speyside.c index 5ccdfe0eb6fe..ea0d1ec67f01 100644 --- a/sound/soc/samsung/speyside.c +++ b/sound/soc/samsung/speyside.c @@ -247,7 +247,7 @@ static struct snd_soc_aux_dev speyside_aux_dev[] = { static struct snd_soc_codec_conf speyside_codec_conf[] = { { - .dev_name = "wm9081.1-006c", + .dlc = COMP_CODEC_CONF("wm9081.1-006c"), .name_prefix = "Sub", }, }; |