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>
Этот коммит содержится в:
Julia Lawall
2015-11-22 08:55:07 +01:00
коммит произвёл Takashi Iwai
родитель 7a7a2df434
Коммит efdbe3c3ed
3 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@@ -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,
};