diff options
author | Takashi Sakamoto <o-takashi@sakamocchi.jp> | 2017-04-14 13:13:50 +0900 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2017-04-14 08:57:56 +0200 |
commit | 1e0f8f68f764b93e8d2d0e87e23532f2186a23a1 (patch) | |
tree | 0c359bf5603afc9bf7881d2091e019731a8a378b /sound/usb | |
parent | a87a4d23e86b7ff9b3f1300774c942de139ba16a (diff) | |
download | linux-1e0f8f68f764b93e8d2d0e87e23532f2186a23a1.tar.bz2 |
ALSA: usb-line6: constify snd_kcontrol_new strucutre array
In kernel APIs of ALSA control interface, drivers can create a control
element set by a call of snd_ctl_new1() with a template. This template
is known to have const qualifier in general cases.
This commit adds the qualifier to template array, for safer program and
runtime. Application of this change moves the symbol from .data section
to .rodata section.
Cc: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/usb')
-rw-r--r-- | sound/usb/line6/pcm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/usb/line6/pcm.c b/sound/usb/line6/pcm.c index fab53f58d447..b3854f8c0c67 100644 --- a/sound/usb/line6/pcm.c +++ b/sound/usb/line6/pcm.c @@ -430,7 +430,7 @@ static int snd_line6_control_playback_put(struct snd_kcontrol *kcontrol, } /* control definition */ -static struct snd_kcontrol_new line6_controls[] = { +static const struct snd_kcontrol_new line6_controls[] = { { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = "PCM Playback Volume", |