ASoC: mediatek: mt8183-da7219: extract codec and DAI names
authorTzung-Bi Shih <tzungbi@google.com>
Thu, 9 Jul 2020 12:24:43 +0000 (20:24 +0800)
committerMark Brown <broonie@kernel.org>
Thu, 9 Jul 2020 19:34:34 +0000 (20:34 +0100)
Extracts codec and DAI names of DA7219.

Signed-off-by: Tzung-Bi Shih <tzungbi@google.com>
Link: https://lore.kernel.org/r/20200709122445.1584497-4-tzungbi@google.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/mediatek/mt8183/mt8183-da7219-max98357.c

index 9636771..17c8e4a 100644 (file)
@@ -17,6 +17,9 @@
 #include "../../codecs/da7219.h"
 #include "mt8183-afe-common.h"
 
+#define DA7219_CODEC_DAI "da7219-hifi"
+#define DA7219_DEV_NAME "da7219.5-001a"
+
 struct mt8183_da7219_max98357_priv {
        struct snd_soc_jack headset_jack;
 };
@@ -54,8 +57,7 @@ static int mt8183_da7219_i2s_hw_params(struct snd_pcm_substream *substream,
                dev_err(rtd->dev, "failed to set cpu dai sysclk\n");
 
        for_each_rtd_codec_dais(rtd, j, codec_dai) {
-
-               if (!strcmp(codec_dai->component->name, "da7219.5-001a")) {
+               if (!strcmp(codec_dai->component->name, DA7219_DEV_NAME)) {
                        ret = snd_soc_dai_set_sysclk(codec_dai,
                                                     DA7219_CLKSRC_MCLK,
                                                     mclk_fs,
@@ -87,8 +89,7 @@ static int mt8183_da7219_hw_free(struct snd_pcm_substream *substream)
        int ret = 0, j;
 
        for_each_rtd_codec_dais(rtd, j, codec_dai) {
-
-               if (!strcmp(codec_dai->component->name, "da7219.5-001a")) {
+               if (!strcmp(codec_dai->component->name, DA7219_DEV_NAME)) {
                        ret = snd_soc_dai_set_pll(codec_dai,
                                                  0, DA7219_SYSCLK_MCLK, 0, 0);
                        if (ret < 0) {
@@ -268,13 +269,13 @@ SND_SOC_DAILINK_DEFS(i2s1,
 
 SND_SOC_DAILINK_DEFS(i2s2,
        DAILINK_COMP_ARRAY(COMP_CPU("I2S2")),
-       DAILINK_COMP_ARRAY(COMP_CODEC("da7219.5-001a", "da7219-hifi")),
+       DAILINK_COMP_ARRAY(COMP_CODEC(DA7219_DEV_NAME, DA7219_CODEC_DAI)),
        DAILINK_COMP_ARRAY(COMP_EMPTY()));
 
 SND_SOC_DAILINK_DEFS(i2s3,
        DAILINK_COMP_ARRAY(COMP_CPU("I2S3")),
        DAILINK_COMP_ARRAY(COMP_CODEC("max98357a", "HiFi"),
-                        COMP_CODEC("da7219.5-001a", "da7219-hifi")),
+                          COMP_CODEC(DA7219_DEV_NAME, DA7219_CODEC_DAI)),
        DAILINK_COMP_ARRAY(COMP_EMPTY()));
 
 SND_SOC_DAILINK_DEFS(i2s5,