projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0326564
)
ALSA: ppc: Constify snd_device_ops definitions
author
Takashi Iwai
<tiwai@suse.de>
Fri, 3 Jan 2020 08:16:31 +0000
(09:16 +0100)
committer
Takashi Iwai
<tiwai@suse.de>
Fri, 3 Jan 2020 08:24:04 +0000
(09:24 +0100)
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-16-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/ppc/pmac.c
patch
|
blob
|
history
diff --git
a/sound/ppc/pmac.c
b/sound/ppc/pmac.c
index 026410c7dd71702087696c1f3681266eac7ba9ae..6ee97008c8f0676323ed798fa4d3e2ae15cad6bd 100644
(file)
--- a/
sound/ppc/pmac.c
+++ b/
sound/ppc/pmac.c
@@
-1143,7
+1143,7
@@
int snd_pmac_new(struct snd_card *card, struct snd_pmac **chip_return)
int i, err;
unsigned int irq;
unsigned long ctrl_addr, txdma_addr, rxdma_addr;
- static struct snd_device_ops ops = {
+ static
const
struct snd_device_ops ops = {
.dev_free = snd_pmac_dev_free,
};