ASoC: pxa: Make static string arrays 'const 'char * const []'
authorLars-Peter Clausen <lars@metafoo.de>
Sat, 12 Nov 2016 13:23:13 +0000 (14:23 +0100)
committerMark Brown <broonie@kernel.org>
Sun, 13 Nov 2016 11:36:59 +0000 (11:36 +0000)
commit92be58106e5d750b97567bea7171f5aee74a678a
tree628a877e3a5e5536784bb5d9880b43390d2a15ad
parent28ab49bf9bd9185d8221392a5195bb6c989ed7c7
ASoC: pxa: Make static string arrays 'const 'char * const []'

const char * const [] is the preferred type for static string arrays since
this states explicitly that the individual entries are not going to be
changed. Due to limitations in the ASoC API it was not possible to use it
for enum text arrays. Commit 87023ff74 ('ASoC: Declare const properly for
enum texts') changed this, but most drivers still use 'const char
* []' as the type for their enum text arrays.

Change these occurrences of 'static * const char * []' to 'static const
char * const []'.

The conversion was done automatically using the following coccinelle semantic
patch:
// <smpl>
@disable optional_qualifier@
identifier s;
@@
 static
-const char *
+const char * const
 s[] = ...;
// </smpl>

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/pxa/corgi.c
sound/soc/pxa/magician.c
sound/soc/pxa/poodle.c
sound/soc/pxa/spitz.c
sound/soc/pxa/tosa.c