summaryrefslogtreecommitdiffstats
path: root/sound/isa/gus
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2020-01-03 09:16:23 +0100
committerTakashi Iwai <tiwai@suse.de>2020-01-03 09:23:54 +0100
commit99f664df4fead60e31d96cc2b5044c9b2fee0767 (patch)
tree0194fd4b6fa011b71b1c8330f3a2932c4cf78251 /sound/isa/gus
parentd23015c12144736bbea6dbd0fdd8dcae3d1e47c5 (diff)
downloadlinux-stable-99f664df4fead60e31d96cc2b5044c9b2fee0767.tar.gz
linux-stable-99f664df4fead60e31d96cc2b5044c9b2fee0767.tar.bz2
linux-stable-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/gus')
-rw-r--r--sound/isa/gus/gus_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/isa/gus/gus_main.c b/sound/isa/gus/gus_main.c
index 9f94b5f3b029..e9fc333c0fcb 100644
--- a/sound/isa/gus/gus_main.c
+++ b/sound/isa/gus/gus_main.c
@@ -134,7 +134,7 @@ int snd_gus_create(struct snd_card *card,
{
struct snd_gus_card *gus;
int err;
- static struct snd_device_ops ops = {
+ static const struct snd_device_ops ops = {
.dev_free = snd_gus_dev_free,
};