aboutsummaryrefslogtreecommitdiffstats
path: root/sound/core/seq/seq_virmidi.c
diff options
context:
space:
mode:
authorJulia Lawall <Julia.Lawall@lip6.fr>2015-11-22 08:55:07 +0100
committerTakashi Iwai <tiwai@suse.de>2015-11-22 09:21:16 +0100
commitefdbe3c3edb6c8c98a8be863f60916780a5375c1 (patch)
treeb12ad7c60e525b042957f37c5b87fc74cf221c7a /sound/core/seq/seq_virmidi.c
parentALSA: azt3328: Remove unnecessary synchronize_irq() before free_irq() (diff)
downloadlinux-dev-efdbe3c3edb6c8c98a8be863f60916780a5375c1.tar.xz
linux-dev-efdbe3c3edb6c8c98a8be863f60916780a5375c1.zip
ALSA: midi: constify snd_rawmidi_global_ops structures
The snd_rawmidi_global_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/core/seq/seq_virmidi.c')
-rw-r--r--sound/core/seq/seq_virmidi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/core/seq/seq_virmidi.c b/sound/core/seq/seq_virmidi.c
index 56e0f4cd3f82..3da2d48610b3 100644
--- a/sound/core/seq/seq_virmidi.c
+++ b/sound/core/seq/seq_virmidi.c
@@ -468,7 +468,7 @@ static int snd_virmidi_dev_unregister(struct snd_rawmidi *rmidi)
/*
*
*/
-static struct snd_rawmidi_global_ops snd_virmidi_global_ops = {
+static const struct snd_rawmidi_global_ops snd_virmidi_global_ops = {
.dev_register = snd_virmidi_dev_register,
.dev_unregister = snd_virmidi_dev_unregister,
};