ASoC: samsung: remove unnecessary controls of odroidx2_max98090
authorJoonyoung Shim <jy0922.shim@samsung.com>
Wed, 20 Aug 2014 08:07:13 +0000 (17:07 +0900)
committerChanho Park <chanho61.park@samsung.com>
Tue, 18 Nov 2014 03:00:40 +0000 (12:00 +0900)
The control by user about external connectors is unnecesary.

Change-Id: Ib86f8ccccbb462c2ae17853dcc29313220eb407f
Signed-off-by: Joonyoung Shim <jy0922.shim@samsung.com>
sound/soc/samsung/odroidx2_max98090.c

index ad1f3c8..fd21335 100644 (file)
@@ -16,9 +16,6 @@
 struct odroidx2_drv_data {
        const struct snd_soc_dapm_widget *dapm_widgets;
        unsigned int num_dapm_widgets;
-
-       const struct snd_kcontrol_new *controls;
-       unsigned int num_controls;
 };
 
 /* Config I2S CDCLK output 19.2MHZ clock to Max98090 */
@@ -46,22 +43,11 @@ static const struct snd_soc_dapm_widget odroidx2_dapm_widgets[] = {
        SND_SOC_DAPM_MIC("DMIC", NULL),
 };
 
-static const struct snd_kcontrol_new odroidx2_max98090_controls[] = {
-       SOC_DAPM_PIN_SWITCH("Headphone Jack"),
-       SOC_DAPM_PIN_SWITCH("Mic Jack"),
-       SOC_DAPM_PIN_SWITCH("DMIC"),
-};
-
 static const struct snd_soc_dapm_widget odroidu3_dapm_widgets[] = {
        SND_SOC_DAPM_HP("Headphone Jack", NULL),
        SND_SOC_DAPM_SPK("Speakers", NULL),
 };
 
-static const struct snd_kcontrol_new odroidu3_max98090_controls[] = {
-       SOC_DAPM_PIN_SWITCH("Headphone Jack"),
-       SOC_DAPM_PIN_SWITCH("Speakers"),
-};
-
 static struct snd_soc_dai_link odroidx2_dai[] = {
        {
                .name           = "MAX98090",
@@ -91,15 +77,11 @@ static struct snd_soc_card odroidx2 = {
 struct odroidx2_drv_data odroidx2_drvdata = {
        .dapm_widgets           = odroidx2_dapm_widgets,
        .num_dapm_widgets       = ARRAY_SIZE(odroidx2_dapm_widgets),
-       .controls               = odroidx2_max98090_controls,
-       .num_controls           = ARRAY_SIZE(odroidx2_max98090_controls),
 };
 
 struct odroidx2_drv_data odroidu3_drvdata = {
        .dapm_widgets           = odroidu3_dapm_widgets,
        .num_dapm_widgets       = ARRAY_SIZE(odroidu3_dapm_widgets),
-       .controls               = odroidu3_max98090_controls,
-       .num_controls           = ARRAY_SIZE(odroidu3_max98090_controls),
 };
 
 static const struct of_device_id odroidx2_audio_of_match[] = {
@@ -128,8 +110,7 @@ static int odroidx2_audio_probe(struct platform_device *pdev)
 
        card->dapm_widgets = dd->dapm_widgets;
        card->num_dapm_widgets = dd->num_dapm_widgets;
-       card->controls = dd->controls;
-       card->num_controls = dd->num_controls;
+
        card->dev = &pdev->dev;
 
        ret = snd_soc_of_parse_card_name(card, "samsung,model");