diff options
author | Takashi Iwai <tiwai@suse.de> | 2020-01-03 09:16:48 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2020-01-03 09:24:22 +0100 |
commit | dde5199c988b16426cf9a4e0df4b7ae06790471e (patch) | |
tree | da24031c3c895ecb5543a0aa95d2d836fd58ce16 /sound/aoa/codecs/onyx.c | |
parent | 454f5ec1d2b774b89f3ea759a9a791f320e6f389 (diff) | |
download | linux-dde5199c988b16426cf9a4e0df4b7ae06790471e.tar.gz linux-dde5199c988b16426cf9a4e0df4b7ae06790471e.tar.bz2 linux-dde5199c988b16426cf9a4e0df4b7ae06790471e.zip |
ALSA: aoa: Constify snd_kcontrol_new items
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>
Diffstat (limited to 'sound/aoa/codecs/onyx.c')
-rw-r--r-- | sound/aoa/codecs/onyx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/aoa/codecs/onyx.c b/sound/aoa/codecs/onyx.c index 83ab3e58a0d3..f85bc8a1e2a6 100644 --- a/sound/aoa/codecs/onyx.c +++ b/sound/aoa/codecs/onyx.c @@ -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, \ |