diff options
author | Richard Fitzgerald <rf@opensource.wolfsonmicro.com> | 2016-04-08 15:50:14 (GMT) |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-04-11 10:22:08 (GMT) |
commit | 43b27d7286737d9af9ebeff0219e38560cb31748 (patch) | |
tree | 756711ef359f1e89c90963d0b1e713397d07727d /sound/soc/codecs | |
parent | f55532a0c0b8bb6148f4e07853b876ef73bc69ca (diff) | |
download | linux-43b27d7286737d9af9ebeff0219e38560cb31748.tar.xz |
ASoC: arizona: Do not create OUT4R widget for CS47L24/WM1831
The CS47L24 and WM1831 codecs only use the OUT4L widget so we can
skip creation of the OUT4R widget.
Signed-off-by: Richard Fitzgerald <rf@opensource.wolfsonmicro.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs')
-rw-r--r-- | sound/soc/codecs/arizona.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/soc/codecs/arizona.c b/sound/soc/codecs/arizona.c index 92d22a0..d8a6823 100644 --- a/sound/soc/codecs/arizona.c +++ b/sound/soc/codecs/arizona.c @@ -221,6 +221,8 @@ int arizona_init_spk(struct snd_soc_codec *codec) switch (arizona->type) { case WM8997: + case CS47L24: + case WM1831: break; default: ret = snd_soc_dapm_new_controls(dapm, &arizona_spkr, 1); |