diff options
author | Bhumika Goyal <bhumirks@gmail.com> | 2017-08-23 17:58:42 +0530 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2017-08-23 15:55:18 +0200 |
commit | faa119099e4942152fd2ff823ae9961ad00db475 (patch) | |
tree | 1a4d7918d1f9902b336bffb49c5c1d6a21f7fc88 /sound/pci/oxygen/xonar_cs43xx.c | |
parent | 668d06165c4a7d5bbb29fadd3e1b2d610b73c456 (diff) |
ALSA: ctxfi: make hw structures const
Make these const as they are only used in a copy operation.
Done using Coccinelle:
@match disable optional_qualifier@
identifier s;
@@
static struct hw s = {...};
@ref@
position p;
identifier match.s;
@@
s@p
@good1@
position ref.p;
identifier match.s,f,c;
expression e;
@@
(
e = s@p
|
e = s@p.f
|
c(...,s@p.f,...)
|
c(...,s@p,...)
)
@bad depends on !good1@
position ref.p;
identifier match.s;
@@
s@p
@depends on forall !bad disable optional_qualifier@
identifier match.s;
@@
static
+ const
struct hw s;
Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/oxygen/xonar_cs43xx.c')
0 files changed, 0 insertions, 0 deletions