diff options
author | Takashi Iwai <tiwai@suse.de> | 2017-01-05 19:28:39 +0300 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2017-01-12 14:50:06 +0300 |
commit | c36f486d7bc71d41ec6b9521574136a280c17803 (patch) | |
tree | 7a63e3561f8a651cd339ebe8c76ae8633b84857d /sound/drivers/mpu401 | |
parent | c62a57004abd819d93772377ea6b4b4fe8412770 (diff) | |
download | linux-c36f486d7bc71d41ec6b9521574136a280c17803.tar.xz |
ALSA: drivers: 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/drivers/mpu401')
-rw-r--r-- | sound/drivers/mpu401/mpu401_uart.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/drivers/mpu401/mpu401_uart.c b/sound/drivers/mpu401/mpu401_uart.c index 776596b5ee05..3a7c317ae012 100644 --- a/sound/drivers/mpu401/mpu401_uart.c +++ b/sound/drivers/mpu401/mpu401_uart.c @@ -481,14 +481,14 @@ snd_mpu401_uart_output_trigger(struct snd_rawmidi_substream *substream, int up) */ -static struct snd_rawmidi_ops snd_mpu401_uart_output = +static const struct snd_rawmidi_ops snd_mpu401_uart_output = { .open = snd_mpu401_uart_output_open, .close = snd_mpu401_uart_output_close, .trigger = snd_mpu401_uart_output_trigger, }; -static struct snd_rawmidi_ops snd_mpu401_uart_input = +static const struct snd_rawmidi_ops snd_mpu401_uart_input = { .open = snd_mpu401_uart_input_open, .close = snd_mpu401_uart_input_close, |