ALSA: ctxfi: make hw structures const
authorBhumika Goyal <bhumirks@gmail.com>
Wed, 23 Aug 2017 12:28:42 +0000 (17:58 +0530)
committerTakashi Iwai <tiwai@suse.de>
Wed, 23 Aug 2017 13:55:18 +0000 (15:55 +0200)
commitfaa119099e4942152fd2ff823ae9961ad00db475
tree1a4d7918d1f9902b336bffb49c5c1d6a21f7fc88
parent668d06165c4a7d5bbb29fadd3e1b2d610b73c456
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>
sound/pci/ctxfi/cthw20k1.c
sound/pci/ctxfi/cthw20k2.c