]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
ALSA: aoa: Constify snd_kcontrol_new items
authorTakashi Iwai <tiwai@suse.de>
Fri, 3 Jan 2020 08:16:48 +0000 (09:16 +0100)
committerTakashi Iwai <tiwai@suse.de>
Fri, 3 Jan 2020 08:24:22 +0000 (09:24 +0100)
Most of snd_kcontrol_new definitions are read-only and passed as-is.
Let's declare them as const for further optimization.

There should be no functional changes by this patch.

Link: https://lore.kernel.org/r/20200103081714.9560-33-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/aoa/codecs/onyx.c
sound/aoa/codecs/tas.c
sound/aoa/fabrics/layout.c

index 83ab3e58a0d361bf6150ec000922b2d47c97b89a..f85bc8a1e2a62c9ed67668109fa426a87568767b 100644 (file)
@@ -413,7 +413,7 @@ static int onyx_snd_single_bit_put(struct snd_kcontrol *kcontrol,
 }
 
 #define SINGLE_BIT(n, type, description, address, mask, flags)         \
-static struct snd_kcontrol_new n##_control = {                         \
+static const struct snd_kcontrol_new n##_control = {                   \
        .iface = SNDRV_CTL_ELEM_IFACE_##type,                           \
        .name = description,                                            \
        .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,                      \
index c60b78367fc9136a1b349fe5773459f2db56f87e..d3e37577b52990e6fbc5b186db59dcc75be1d8e5 100644 (file)
@@ -369,7 +369,7 @@ static int tas_snd_mixer_put(struct snd_kcontrol *kcontrol,
 }
 
 #define MIXER_CONTROL(n,descr,idx)                     \
-static struct snd_kcontrol_new n##_control = {         \
+static const struct snd_kcontrol_new n##_control = {   \
        .iface = SNDRV_CTL_ELEM_IFACE_MIXER,            \
        .name = descr " Playback Volume",               \
        .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,      \
index 801b2f7699c252d081be744d8e06416aa8b7ce4a..d2e85b83f7ed06e0e87d119ffbc42b2b3264a0a0 100644 (file)
@@ -655,7 +655,7 @@ static int n##_control_put(struct snd_kcontrol *kcontrol,           \
                        !!ucontrol->value.integer.value[0]);            \
        return 1;                                                       \
 }                                                                      \
-static struct snd_kcontrol_new n##_ctl = {                             \
+static const struct snd_kcontrol_new n##_ctl = {                       \
        .iface = SNDRV_CTL_ELEM_IFACE_MIXER,                            \
        .name = description,                                            \
        .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,                      \