Commit 5a374524 authored by Mark Brown's avatar Mark Brown

ASoC: Convert WM8804 to table based control init

Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent bc9c040d
...@@ -659,8 +659,6 @@ static int wm8804_probe(struct snd_soc_codec *codec) ...@@ -659,8 +659,6 @@ static int wm8804_probe(struct snd_soc_codec *codec)
wm8804_set_bias_level(codec, SND_SOC_BIAS_STANDBY); wm8804_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
snd_soc_add_controls(codec, wm8804_snd_controls,
ARRAY_SIZE(wm8804_snd_controls));
return 0; return 0;
err_reg_enable: err_reg_enable:
...@@ -715,7 +713,10 @@ static struct snd_soc_codec_driver soc_codec_dev_wm8804 = { ...@@ -715,7 +713,10 @@ static struct snd_soc_codec_driver soc_codec_dev_wm8804 = {
.reg_cache_size = ARRAY_SIZE(wm8804_reg_defs), .reg_cache_size = ARRAY_SIZE(wm8804_reg_defs),
.reg_word_size = sizeof(u8), .reg_word_size = sizeof(u8),
.reg_cache_default = wm8804_reg_defs, .reg_cache_default = wm8804_reg_defs,
.volatile_register = wm8804_volatile .volatile_register = wm8804_volatile,
.controls = wm8804_snd_controls,
.num_controls = ARRAY_SIZE(wm8804_snd_controls),
}; };
static const struct of_device_id wm8804_of_match[] = { static const struct of_device_id wm8804_of_match[] = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment