diff options
author | Takashi Iwai <tiwai@suse.de> | 2020-01-03 09:16:53 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2020-01-03 09:24:28 +0100 |
commit | b4e5e70775546480035e156b40040e5d0d4264d1 (patch) | |
tree | a09b88a21989aa000448973c1e08f82e429d88f9 /sound/pci/ymfpci | |
parent | 35ace5e8410e41df8719ee9fee49312655efa26a (diff) | |
download | linux-b4e5e70775546480035e156b40040e5d0d4264d1.tar.gz linux-b4e5e70775546480035e156b40040e5d0d4264d1.tar.bz2 linux-b4e5e70775546480035e156b40040e5d0d4264d1.zip |
ALSA: pci: 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-38-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/ymfpci')
-rw-r--r-- | sound/pci/ymfpci/ymfpci_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/ymfpci/ymfpci_main.c b/sound/pci/ymfpci/ymfpci_main.c index a531f4d2605d..1cffd988b616 100644 --- a/sound/pci/ymfpci/ymfpci_main.c +++ b/sound/pci/ymfpci/ymfpci_main.c @@ -1588,7 +1588,7 @@ static const struct snd_kcontrol_new snd_ymfpci_dup4ch = { .put = snd_ymfpci_put_dup4ch, }; -static struct snd_kcontrol_new snd_ymfpci_controls[] = { +static const struct snd_kcontrol_new snd_ymfpci_controls[] = { { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = "Wave Playback Volume", |