aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/sound/spi
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2020-01-03 09:16:34 +0100
committerTakashi Iwai <tiwai@suse.de>2020-01-03 09:24:06 +0100
commitc3b53df3d00848936b286c41fae09cf9a5192ce0 (patch)
tree8e10e28558f3da8c29d4b774fce01a46e154f1f1 /sound/spi
parentALSA: sh: Constify snd_device_ops definitions (diff)
downloadwireguard-linux-c3b53df3d00848936b286c41fae09cf9a5192ce0.tar.xz
wireguard-linux-c3b53df3d00848936b286c41fae09cf9a5192ce0.zip
ALSA: spi: 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-19-tiwai@suse.de Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/spi')
-rw-r--r--sound/spi/at73c213.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/spi/at73c213.c b/sound/spi/at73c213.c
index 77563baf7a8f..d6f2b19cfa39 100644
--- a/sound/spi/at73c213.c
+++ b/sound/spi/at73c213.c
@@ -874,7 +874,7 @@ static int snd_at73c213_dev_free(struct snd_device *device)
static int snd_at73c213_dev_init(struct snd_card *card,
struct spi_device *spi)
{
- static struct snd_device_ops ops = {
+ static const struct snd_device_ops ops = {
.dev_free = snd_at73c213_dev_free,
};
struct snd_at73c213 *chip = get_chip(card);