ASoC: wl1273: Use SOC_ENUM_SINGLE_EXT_DECL()
authorTakashi Iwai <tiwai@suse.de>
Tue, 18 Feb 2014 09:33:06 +0000 (10:33 +0100)
committerMark Brown <broonie@linaro.org>
Sun, 23 Feb 2014 02:32:36 +0000 (11:32 +0900)
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>
sound/soc/codecs/wl1273.c

index b7ab2ef567c889ad7969c9bae6e2a4ca640b7de4..7485285d08d20ebf8ce7bdcb81cffba67ef7424d 100644 (file)
@@ -209,8 +209,7 @@ static int snd_wl1273_set_audio_route(struct snd_kcontrol *kcontrol,
        return 1;
 }
 
-static const struct soc_enum wl1273_enum =
-       SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(wl1273_audio_route), wl1273_audio_route);
+static SOC_ENUM_SINGLE_EXT_DECL(wl1273_enum, wl1273_audio_route);
 
 static int snd_wl1273_fm_audio_get(struct snd_kcontrol *kcontrol,
                                   struct snd_ctl_elem_value *ucontrol)
@@ -247,9 +246,7 @@ static int snd_wl1273_fm_audio_put(struct snd_kcontrol *kcontrol,
 
 static const char * const wl1273_audio_strings[] = { "Digital", "Analog" };
 
-static const struct soc_enum wl1273_audio_enum =
-       SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(wl1273_audio_strings),
-                           wl1273_audio_strings);
+static SOC_ENUM_SINGLE_EXT_DECL(wl1273_audio_enum, wl1273_audio_strings);
 
 static int snd_wl1273_fm_volume_get(struct snd_kcontrol *kcontrol,
                                    struct snd_ctl_elem_value *ucontrol)
This page took 0.025557 seconds and 5 git commands to generate.