mirror of
https://github.com/torvalds/linux.git
synced 2024-12-25 12:21:37 +00:00
ASoC: cs4271: Convert to table based control init
Signed-off-by: Mark Brown <broonie@linaro.org> Acked-by: Alexander Sverdlin <subaparts@yandex.ru>
This commit is contained in:
parent
c095ba7224
commit
bad268f350
@ -576,8 +576,7 @@ static int cs4271_probe(struct snd_soc_codec *codec)
|
|||||||
CS4271_MODE2_MUTECAEQUB,
|
CS4271_MODE2_MUTECAEQUB,
|
||||||
CS4271_MODE2_MUTECAEQUB);
|
CS4271_MODE2_MUTECAEQUB);
|
||||||
|
|
||||||
return snd_soc_add_codec_controls(codec, cs4271_snd_controls,
|
return 0;
|
||||||
ARRAY_SIZE(cs4271_snd_controls));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int cs4271_remove(struct snd_soc_codec *codec)
|
static int cs4271_remove(struct snd_soc_codec *codec)
|
||||||
@ -596,6 +595,9 @@ static struct snd_soc_codec_driver soc_codec_dev_cs4271 = {
|
|||||||
.remove = cs4271_remove,
|
.remove = cs4271_remove,
|
||||||
.suspend = cs4271_soc_suspend,
|
.suspend = cs4271_soc_suspend,
|
||||||
.resume = cs4271_soc_resume,
|
.resume = cs4271_soc_resume,
|
||||||
|
|
||||||
|
.controls = cs4271_snd_controls,
|
||||||
|
.num_controls = ARRAY_SIZE(cs4271_snd_controls),
|
||||||
};
|
};
|
||||||
|
|
||||||
#if defined(CONFIG_SPI_MASTER)
|
#if defined(CONFIG_SPI_MASTER)
|
||||||
|
Loading…
Reference in New Issue
Block a user