aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sound/soc/codecs/sn95031.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/codecs/sn95031.c b/sound/soc/codecs/sn95031.c
index cf8fa40662f0..6167c5996d8e 100644
--- a/sound/soc/codecs/sn95031.c
+++ b/sound/soc/codecs/sn95031.c
@@ -867,9 +867,6 @@ static int sn95031_codec_probe(struct snd_soc_codec *codec)
867 snd_soc_write(codec, SN95031_SSR2, 0x10); 867 snd_soc_write(codec, SN95031_SSR2, 0x10);
868 snd_soc_write(codec, SN95031_SSR3, 0x40); 868 snd_soc_write(codec, SN95031_SSR3, 0x40);
869 869
870 snd_soc_add_codec_controls(codec, sn95031_snd_controls,
871 ARRAY_SIZE(sn95031_snd_controls));
872
873 return 0; 870 return 0;
874} 871}
875 872
@@ -886,6 +883,9 @@ static struct snd_soc_codec_driver sn95031_codec = {
886 .remove = sn95031_codec_remove, 883 .remove = sn95031_codec_remove,
887 .set_bias_level = sn95031_set_vaud_bias, 884 .set_bias_level = sn95031_set_vaud_bias,
888 .idle_bias_off = true, 885 .idle_bias_off = true,
886
887 .controls = sn95031_snd_controls,
888 .num_controls = ARRAY_SIZE(sn95031_snd_controls),
889 .dapm_widgets = sn95031_dapm_widgets, 889 .dapm_widgets = sn95031_dapm_widgets,
890 .num_dapm_widgets = ARRAY_SIZE(sn95031_dapm_widgets), 890 .num_dapm_widgets = ARRAY_SIZE(sn95031_dapm_widgets),
891 .dapm_routes = sn95031_audio_map, 891 .dapm_routes = sn95031_audio_map,