aboutsummaryrefslogtreecommitdiffstats
path: root/sound/drivers/opl3/opl3_oss.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2020-01-03 09:17:08 +0100
committerTakashi Iwai <tiwai@suse.de>2020-01-03 09:24:41 +0100
commit87065d3d946bf116a639f3bd88ebbd3f3938cffb (patch)
tree10a4bbfb2bdf7290095d96c19ecc0c4e6fba5979 /sound/drivers/opl3/opl3_oss.c
parentALSA: usx2y: Constify struct snd_usb_audio_quirk entries (diff)
downloadlinux-dev-87065d3d946bf116a639f3bd88ebbd3f3938cffb.tar.xz
linux-dev-87065d3d946bf116a639f3bd88ebbd3f3938cffb.zip
ALSA: seq: oss: Constify snd_seq_oss_callback definitions
The snd_seq_oss_callback items are just copied to another struct as-is, hence they can be declared as const. There should be no functional changes by this patch. Link: https://lore.kernel.org/r/20200103081714.9560-53-tiwai@suse.de Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to '')
-rw-r--r--sound/drivers/opl3/opl3_oss.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/drivers/opl3/opl3_oss.c b/sound/drivers/opl3/opl3_oss.c
index d0cf2fb02cce..7bf0d5f3fedd 100644
--- a/sound/drivers/opl3/opl3_oss.c
+++ b/sound/drivers/opl3/opl3_oss.c
@@ -16,7 +16,7 @@ static int snd_opl3_reset_seq_oss(struct snd_seq_oss_arg *arg);
/* operators */
-static struct snd_seq_oss_callback oss_callback = {
+static const struct snd_seq_oss_callback oss_callback = {
.owner = THIS_MODULE,
.open = snd_opl3_open_seq_oss,
.close = snd_opl3_close_seq_oss,