diff options
author | Takashi Iwai <tiwai@suse.de> | 2017-01-05 17:30:12 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2017-01-12 12:50:48 +0100 |
commit | f43e5407e4184ef0e5a31272f80ca893cb5ee24c (patch) | |
tree | a2877c89429022881d27b4b09f55fb8326e9ddf9 /sound/usb/6fire | |
parent | ALSA: firewire: Constify snd_rawmidi_ops (diff) | |
download | linux-f43e5407e4184ef0e5a31272f80ca893cb5ee24c.tar.xz linux-f43e5407e4184ef0e5a31272f80ca893cb5ee24c.zip |
ALSA: usb: Constify snd_rawmidi_ops
Now snd_rawmidi_ops is maintained as a const pointer in snd_rawmidi,
we can constify the definitions.
Reviewed-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/usb/6fire')
-rw-r--r-- | sound/usb/6fire/midi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/usb/6fire/midi.c b/sound/usb/6fire/midi.c index 3d410969553e..aa5adbb6eb5d 100644 --- a/sound/usb/6fire/midi.c +++ b/sound/usb/6fire/midi.c @@ -139,14 +139,14 @@ static void usb6fire_midi_in_trigger( spin_unlock_irqrestore(&rt->in_lock, flags); } -static struct snd_rawmidi_ops out_ops = { +static const struct snd_rawmidi_ops out_ops = { .open = usb6fire_midi_out_open, .close = usb6fire_midi_out_close, .trigger = usb6fire_midi_out_trigger, .drain = usb6fire_midi_out_drain }; -static struct snd_rawmidi_ops in_ops = { +static const struct snd_rawmidi_ops in_ops = { .open = usb6fire_midi_in_open, .close = usb6fire_midi_in_close, .trigger = usb6fire_midi_in_trigger |