diff options
author | Takashi Iwai <tiwai@suse.de> | 2020-01-03 09:16:55 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2020-01-03 09:24:33 +0100 |
commit | f8a32d94f31fc9e28732b73602adc072e620e466 (patch) | |
tree | 185d58194ebca96c87b5b07fc9d2bcd6581e83f4 /sound/sparc/dbri.c | |
parent | ALSA: ppc: Constify snd_kcontrol_new items (diff) | |
download | linux-f8a32d94f31fc9e28732b73602adc072e620e466.tar.xz linux-f8a32d94f31fc9e28732b73602adc072e620e466.zip |
ALSA: sparc: 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-40-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/sparc/dbri.c')
-rw-r--r-- | sound/sparc/dbri.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/sparc/dbri.c b/sound/sparc/dbri.c index 1390a52d6cfd..aaa1493b9ef9 100644 --- a/sound/sparc/dbri.c +++ b/sound/sparc/dbri.c @@ -2410,7 +2410,7 @@ static int snd_cs4215_put_single(struct snd_kcontrol *kcontrol, .private_value = (entry) | ((shift) << 8) | ((mask) << 16) | \ ((invert) << 24) }, -static struct snd_kcontrol_new dbri_controls[] = { +static const struct snd_kcontrol_new dbri_controls[] = { { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = "Playback Volume", |