diff options
author | Takashi Iwai <tiwai@suse.de> | 2020-01-03 09:16:27 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2020-01-03 09:24:01 +0100 |
commit | e6f2a617ac53bc0753b885ffb94379ff48b2e2df (patch) | |
tree | b109afc901ed6257b49a0fe94bf03d3f47a88c17 /sound/aoa/codecs/tas.c | |
parent | ALSA: usb: Constify snd_device_ops definitions (diff) | |
download | linux-e6f2a617ac53bc0753b885ffb94379ff48b2e2df.tar.xz linux-e6f2a617ac53bc0753b885ffb94379ff48b2e2df.zip |
ALSA: aoa: 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-12-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/aoa/codecs/tas.c')
-rw-r--r-- | sound/aoa/codecs/tas.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/aoa/codecs/tas.c b/sound/aoa/codecs/tas.c index 7af6129d1cd7..c60b78367fc9 100644 --- a/sound/aoa/codecs/tas.c +++ b/sound/aoa/codecs/tas.c @@ -217,7 +217,7 @@ static int tas_dev_register(struct snd_device *dev) return 0; } -static struct snd_device_ops ops = { +static const struct snd_device_ops ops = { .dev_register = tas_dev_register, }; |