Commit 0acb310c authored by Julia Lawall's avatar Julia Lawall Committed by Jiri Kosina

HID: prodikeys: constify snd_rawmidi_ops structures

This snd_rawmidi_ops structure is only passed as the third
argument of snd_rawmidi_set_ops.  This argument is const, so the
snd_rawmidi_ops structure can be const too.

Done with the help of Coccinelle.
Signed-off-by: default avatarJulia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 81b7ec4e
...@@ -593,7 +593,7 @@ static void pcmidi_in_trigger(struct snd_rawmidi_substream *substream, int up) ...@@ -593,7 +593,7 @@ static void pcmidi_in_trigger(struct snd_rawmidi_substream *substream, int up)
pm->in_triggered = up; pm->in_triggered = up;
} }
static struct snd_rawmidi_ops pcmidi_in_ops = { static const struct snd_rawmidi_ops pcmidi_in_ops = {
.open = pcmidi_in_open, .open = pcmidi_in_open,
.close = pcmidi_in_close, .close = pcmidi_in_close,
.trigger = pcmidi_in_trigger .trigger = pcmidi_in_trigger
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment