diff options
author | Takashi Iwai <tiwai@suse.de> | 2020-01-03 09:16:34 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2020-01-03 09:24:06 +0100 |
commit | c3b53df3d00848936b286c41fae09cf9a5192ce0 (patch) | |
tree | 8e10e28558f3da8c29d4b774fce01a46e154f1f1 /sound/spi | |
parent | 52b136d24842b3e7dfd6ed10d349841a90c754ac (diff) | |
download | blackbird-op-linux-c3b53df3d00848936b286c41fae09cf9a5192ce0.tar.gz blackbird-op-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.c | 2 |
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); |