diff options
author | Takashi Iwai <tiwai@suse.de> | 2014-02-18 10:09:52 +0100 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-02-20 11:22:43 +0900 |
commit | 6415e307b1d270e4e5f7ee7bd9aac4ac4f1daf65 (patch) | |
tree | 5dc2c524d9f01787fbad8ea85d52d8fd5169b0d7 | |
parent | 38dbfb59d1175ef458d006556061adeaa8751b72 (diff) |
ASoC: lm4857: Use SOC_ENUM_SINGLE_EXT_DECL()
Just replace with the helper macro. No functional change at all.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Acked-by: Liam Girdwood <liam.r.girdwood@linux.intel.com>
Acked-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Mark Brown <broonie@linaro.org>
-rw-r--r-- | sound/soc/codecs/lm4857.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sound/soc/codecs/lm4857.c b/sound/soc/codecs/lm4857.c index 0e5743ea79d..4f048db9f55 100644 --- a/sound/soc/codecs/lm4857.c +++ b/sound/soc/codecs/lm4857.c @@ -101,8 +101,7 @@ static const char *lm4857_mode[] = { "Headphone", }; -static const struct soc_enum lm4857_mode_enum = - SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(lm4857_mode), lm4857_mode); +static SOC_ENUM_SINGLE_EXT_DECL(lm4857_mode_enum, lm4857_mode); static const struct snd_soc_dapm_widget lm4857_dapm_widgets[] = { SND_SOC_DAPM_INPUT("IN"), |