ASoC: max98088: Use table based control init

Tested-by: Dylan Reid <dgreid@chromium.org>
Signed-off-by: Mark Brown <broonie@linaro.org>
This commit is contained in:
Mark Brown 2013-09-23 17:54:02 +01:00
parent 356d86e248
commit ad65adf4a3
1 changed files with 2 additions and 3 deletions

View File

@ -2048,9 +2048,6 @@ static int max98088_probe(struct snd_soc_codec *codec)
max98088_handle_pdata(codec); max98088_handle_pdata(codec);
snd_soc_add_codec_controls(codec, max98088_snd_controls,
ARRAY_SIZE(max98088_snd_controls));
err_access: err_access:
return ret; return ret;
} }
@ -2071,6 +2068,8 @@ static struct snd_soc_codec_driver soc_codec_dev_max98088 = {
.suspend = max98088_suspend, .suspend = max98088_suspend,
.resume = max98088_resume, .resume = max98088_resume,
.set_bias_level = max98088_set_bias_level, .set_bias_level = max98088_set_bias_level,
.controls = max98088_snd_controls,
.num_controls = ARRAY_SIZE(max98088_snd_controls),
.reg_cache_size = ARRAY_SIZE(max98088_reg), .reg_cache_size = ARRAY_SIZE(max98088_reg),
.reg_word_size = sizeof(u8), .reg_word_size = sizeof(u8),
.reg_cache_default = max98088_reg, .reg_cache_default = max98088_reg,