diff options
author | Julia Lawall <Julia.Lawall@lip6.fr> | 2015-11-08 23:40:41 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2015-11-11 08:40:56 +0100 |
commit | 43f2cdeb7a61598050028f1eae51b9cb5398af42 (patch) | |
tree | feab7519d5699ecb867fcbaf105ed8d2f46fe20d /sound/pci/ctxfi/ctresource.c | |
parent | 16771c7c704769c5f3d70c024630b6e5b3eafa67 (diff) | |
download | lwn-43f2cdeb7a61598050028f1eae51b9cb5398af42.tar.gz lwn-43f2cdeb7a61598050028f1eae51b9cb5398af42.zip |
ALSA: ctxfi: constify rsc ops structures
The various rsc ops structures are never modified, so declare them as
const.
Done with the help of Coccinelle.
Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/ctxfi/ctresource.c')
-rw-r--r-- | sound/pci/ctxfi/ctresource.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/ctxfi/ctresource.c b/sound/pci/ctxfi/ctresource.c index 1a97e406d8ec..c5124c3c0fd1 100644 --- a/sound/pci/ctxfi/ctresource.c +++ b/sound/pci/ctxfi/ctresource.c @@ -127,7 +127,7 @@ static int rsc_master(struct rsc *rsc) return rsc->conj = rsc->idx; } -static struct rsc_ops rsc_generic_ops = { +static const struct rsc_ops rsc_generic_ops = { .index = rsc_index, .output_slot = audio_ring_slot, .master = rsc_master, |