diff options
author | Takashi Iwai <tiwai@suse.de> | 2020-01-03 09:16:23 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2020-01-03 09:23:54 +0100 |
commit | 99f664df4fead60e31d96cc2b5044c9b2fee0767 (patch) | |
tree | 0194fd4b6fa011b71b1c8330f3a2932c4cf78251 /sound/isa/sb/emu8000.c | |
parent | ALSA: i2c: Constify snd_device_ops definitions (diff) | |
download | linux-99f664df4fead60e31d96cc2b5044c9b2fee0767.tar.xz linux-99f664df4fead60e31d96cc2b5044c9b2fee0767.zip |
ALSA: isa: Constify snd_device_ops definitions
Now we may declare const for snd_device_ops definitions, so let's do
it for optimization.
There should be no functional changes by this patch.
Link: https://lore.kernel.org/r/20200103081714.9560-8-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/isa/sb/emu8000.c')
-rw-r--r-- | sound/isa/sb/emu8000.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/isa/sb/emu8000.c b/sound/isa/sb/emu8000.c index 433e32e254f9..bc47e8e51523 100644 --- a/sound/isa/sb/emu8000.c +++ b/sound/isa/sb/emu8000.c @@ -1075,7 +1075,7 @@ snd_emu8000_new(struct snd_card *card, int index, long port, int seq_ports, struct snd_seq_device *awe; struct snd_emu8000 *hw; int err; - static struct snd_device_ops ops = { + static const struct snd_device_ops ops = { .dev_free = snd_emu8000_dev_free, }; |