1
0
Fork 0
alistair23-linux/sound/pci/mixart
Bhumika Goyal f3b827e0b1 ALSA: pci: constify snd_kcontrol_new structures
Declare snd_kcontrol_new structures as const as they are only passed as
an argument to the function snd_ctl_new1. This argument is of type
const, so snd_kcontrol_new structures having the same property can be
made const too.
Done using Coccinelle:

@r1 disable optional_qualifier @
identifier i;
position p;
@@
static struct snd_kcontrol_new i@p = {...};

@ok1@
identifier r1.i;
position p;
expression e1;
@@
snd_ctl_new1(&i@p,e1)

@bad@
position p!={r1.p,ok1.p};
identifier r1.i;
@@
i@p

@depends on !bad disable optional_qualifier@
identifier r1.i;
@@
+const
struct snd_kcontrol_new i;

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
2017-02-21 22:01:21 +01:00
..
Makefile [ALSA] Changed Jaroslav Kysela's e-mail from perex@suse.cz to perex@perex.cz 2007-10-16 16:51:18 +02:00
mixart.c ALSA: constify snd_pcm_ops structures 2016-09-02 11:49:10 +02:00
mixart.h ALSA: mixart: fix a comment typo 2016-12-28 16:11:34 +01:00
mixart_core.c ALSA: Include linux/io.h instead of asm/io.h 2015-01-28 16:49:33 +01:00
mixart_core.h ALSA: mixart: Use nonatomic PCM ops 2014-09-15 15:52:09 +02:00
mixart_hwdep.c ALSA: Include linux/io.h instead of asm/io.h 2015-01-28 16:49:33 +01:00
mixart_hwdep.h ALSA: sound/mixart: avoid redefining {readl,write}_{le,be} accessors 2010-11-11 02:02:20 +01:00
mixart_mixer.c ALSA: pci: constify snd_kcontrol_new structures 2017-02-21 22:01:21 +01:00
mixart_mixer.h [ALSA] Remove xxx_t typedefs: PCI miXart 2006-01-03 12:19:16 +01:00