]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
ASoC: Intel: bytcr_rt5651: Simplify card long-name
authorHans de Goede <hdegoede@redhat.com>
Sun, 24 Jun 2018 14:06:32 +0000 (16:06 +0200)
committerMark Brown <broonie@kernel.org>
Wed, 27 Jun 2018 11:11:25 +0000 (12:11 +0100)
Now that the headset-mic is always IN3 there is no reason to have
the headset-mic mapping in the long-name.

This commit simplifies the long name to "bytcr-rt5651-<intmic-map>-mic".

We can safely do this without causing regressions (UCM profile not found
due to the longname change) as the UCM profiles are not in upstream
alsa-lib yet.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/intel/boards/bytcr_rt5651.c

index 042334d9be325f61cb5bed5d300de797ad5c6fd6..e778142b8a6e42aa2f693ecd38042fc86d585e8f 100644 (file)
@@ -662,7 +662,7 @@ static struct snd_soc_card byt_rt5651_card = {
 static char byt_rt5651_codec_name[SND_ACPI_I2C_ID_LEN];
 static char byt_rt5651_codec_aif_name[12]; /*  = "rt5651-aif[1|2]" */
 static char byt_rt5651_cpu_dai_name[10]; /*  = "ssp[0|2]-port" */
-static char byt_rt5651_long_name[40]; /* = "bytcr-rt5651-*-spk-*-mic" */
+static char byt_rt5651_long_name[40]; /* = "bytcr-rt5651-*-mic" */
 
 static bool is_valleyview(void)
 {
@@ -683,8 +683,7 @@ struct acpi_chan_package {   /* ACPICA seems to require 64 bit integers */
 
 static int snd_byt_rt5651_mc_probe(struct platform_device *pdev)
 {
-       const char * const intmic_name[] = { "dmic", "in1", "in12" };
-       const char * const hsmic_name[] = { "in3", "in3", "in3" };
+       const char * const mic_name[] = { "dmic", "in1", "in12" };
        struct byt_rt5651_private *priv;
        struct snd_soc_acpi_mach *mach;
        const char *i2c_name = NULL;
@@ -831,9 +830,8 @@ static int snd_byt_rt5651_mc_probe(struct platform_device *pdev)
        }
 
        snprintf(byt_rt5651_long_name, sizeof(byt_rt5651_long_name),
-                "bytcr-rt5651-%s-intmic-%s-hsmic",
-                intmic_name[BYT_RT5651_MAP(byt_rt5651_quirk)],
-                hsmic_name[BYT_RT5651_MAP(byt_rt5651_quirk)]);
+                "bytcr-rt5651-%s-mic",
+                mic_name[BYT_RT5651_MAP(byt_rt5651_quirk)]);
        byt_rt5651_card.long_name = byt_rt5651_long_name;
 
        ret_val = devm_snd_soc_register_card(&pdev->dev, &byt_rt5651_card);