mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-08 14:02:37 -04:00
ALSA: hda: make snd_kcontrol_new const
Make these const as they are only passed as the 3rd argument to the function snd_hda_gen_add_kctl, which is of type const. Done using Coccinelle. Signed-off-by: Bhumika Goyal <bhumirks@gmail.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
committed by
Takashi Iwai
parent
7df3859bf7
commit
fdbf048804
@@ -505,7 +505,7 @@ static int ad1983_auto_smux_enum_put(struct snd_kcontrol *kcontrol,
|
||||
return 1;
|
||||
}
|
||||
|
||||
static struct snd_kcontrol_new ad1983_auto_smux_mixer = {
|
||||
static const struct snd_kcontrol_new ad1983_auto_smux_mixer = {
|
||||
.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
||||
.name = "IEC958 Playback Source",
|
||||
.info = ad1983_auto_smux_enum_info,
|
||||
@@ -788,7 +788,7 @@ static int ad1988_auto_smux_enum_put(struct snd_kcontrol *kcontrol,
|
||||
return 1;
|
||||
}
|
||||
|
||||
static struct snd_kcontrol_new ad1988_auto_smux_mixer = {
|
||||
static const struct snd_kcontrol_new ad1988_auto_smux_mixer = {
|
||||
.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
||||
.name = "IEC958 Playback Source",
|
||||
.info = ad1988_auto_smux_enum_info,
|
||||
|
||||
@@ -961,7 +961,7 @@ static int stac_smux_enum_put(struct snd_kcontrol *kcontrol,
|
||||
&spec->cur_smux[smux_idx]);
|
||||
}
|
||||
|
||||
static struct snd_kcontrol_new stac_smux_mixer = {
|
||||
static const struct snd_kcontrol_new stac_smux_mixer = {
|
||||
.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
||||
.name = "IEC958 Playback Source",
|
||||
/* count set later */
|
||||
|
||||
Reference in New Issue
Block a user