aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs/stac9766.c
diff options
context:
space:
mode:
authorLars-Peter Clausen <lars@metafoo.de>2014-10-30 16:01:02 -0400
committerMark Brown <broonie@kernel.org>2014-10-31 13:20:19 -0400
commit8865051d9941de905432f59f7a88662e824d5df9 (patch)
tree85edfef79cc02a96f4dabef20a20fa728fb24d72 /sound/soc/codecs/stac9766.c
parent93932abaa3c84c2d76ce713bbbad08bad9162483 (diff)
ASoC: stac9766: Use table based control setup
Makes the code a bit cleaner. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/stac9766.c')
-rw-r--r--sound/soc/codecs/stac9766.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sound/soc/codecs/stac9766.c b/sound/soc/codecs/stac9766.c
index e88d9ac9cbab..6c62d291cde7 100644
--- a/sound/soc/codecs/stac9766.c
+++ b/sound/soc/codecs/stac9766.c
@@ -342,9 +342,6 @@ static int stac9766_codec_probe(struct snd_soc_codec *codec)
342 goto codec_err; 342 goto codec_err;
343 } 343 }
344 344
345 snd_soc_add_codec_controls(codec, stac9766_snd_ac97_controls,
346 ARRAY_SIZE(stac9766_snd_ac97_controls));
347
348 return 0; 345 return 0;
349 346
350codec_err: 347codec_err:
@@ -359,6 +356,8 @@ static int stac9766_codec_remove(struct snd_soc_codec *codec)
359} 356}
360 357
361static struct snd_soc_codec_driver soc_codec_dev_stac9766 = { 358static struct snd_soc_codec_driver soc_codec_dev_stac9766 = {
359 .controls = stac9766_snd_ac97_controls,
360 .num_controls = ARRAY_SIZE(stac9766_snd_ac97_controls),
362 .write = stac9766_ac97_write, 361 .write = stac9766_ac97_write,
363 .read = stac9766_ac97_read, 362 .read = stac9766_ac97_read,
364 .set_bias_level = stac9766_set_bias_level, 363 .set_bias_level = stac9766_set_bias_level,