ASoC: tlv320aic3x: Move to table based control init
authorMark Brown <broonie@linaro.org>
Mon, 23 Sep 2013 22:53:16 +0000 (23:53 +0100)
committerMark Brown <broonie@linaro.org>
Tue, 24 Sep 2013 18:32:56 +0000 (19:32 +0100)
Signed-off-by: Mark Brown <broonie@linaro.org>
sound/soc/codecs/tlv320aic3x.c

index de17a36beb6f0387d516fa4d907a6879f0fa3119..397a2133e2d1e936c0c43ae9246e7fc698081255 100644 (file)
@@ -1369,8 +1369,6 @@ static int aic3x_probe(struct snd_soc_codec *codec)
                              (aic3x->setup->gpio_func[1] & 0xf) << 4);
        }
 
-       snd_soc_add_codec_controls(codec, aic3x_snd_controls,
-                            ARRAY_SIZE(aic3x_snd_controls));
        if (aic3x->model == AIC3X_MODEL_3007)
                snd_soc_add_codec_controls(codec, &aic3x_classd_amp_gain_ctrl, 1);
 
@@ -1428,6 +1426,8 @@ static struct snd_soc_codec_driver soc_codec_dev_aic3x = {
        .remove = aic3x_remove,
        .suspend = aic3x_suspend,
        .resume = aic3x_resume,
+       .controls = aic3x_snd_controls,
+       .num_controls = ARRAY_SIZE(aic3x_snd_controls),
 };
 
 /*
This page took 0.025434 seconds and 5 git commands to generate.