diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2014-02-28 08:31:06 +0100 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-03-01 12:03:34 +0900 |
commit | 28963178427386e83788d314d2a05f0c093f836a (patch) | |
tree | a510b32993a473598d8341287de97a84d8d3725c /sound/soc | |
parent | b948837a32cc2a510c2baf90111c8c5dde801a66 (diff) | |
download | blackbird-op-linux-28963178427386e83788d314d2a05f0c093f836a.tar.gz blackbird-op-linux-28963178427386e83788d314d2a05f0c093f836a.zip |
ASoC: adau1373: Use SOC_ENUM_SINGLE_VIRT_DECL()
For the upcoming consolidation for MUXs and virtual MUXs we need to mark virtual
enums as such.
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound/soc')
-rw-r--r-- | sound/soc/codecs/adau1373.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/codecs/adau1373.c b/sound/soc/codecs/adau1373.c index 5765c224cd9a..5223800775ad 100644 --- a/sound/soc/codecs/adau1373.c +++ b/sound/soc/codecs/adau1373.c @@ -576,8 +576,8 @@ static const char *adau1373_decimator_text[] = { "DMIC1", }; -static SOC_ENUM_SINGLE_DECL(adau1373_decimator_enum, - 0, 0, adau1373_decimator_text); +static SOC_ENUM_SINGLE_VIRT_DECL(adau1373_decimator_enum, + adau1373_decimator_text); static const struct snd_kcontrol_new adau1373_decimator_mux = SOC_DAPM_ENUM_VIRT("Decimator Mux", adau1373_decimator_enum); |