ASoC: intel: mfld: Make static string arrays 'const 'char * const []'
authorLars-Peter Clausen <lars@metafoo.de>
Tue, 15 Nov 2016 20:40:45 +0000 (21:40 +0100)
committerMark Brown <broonie@kernel.org>
Wed, 16 Nov 2016 10:08:59 +0000 (10:08 +0000)
commit266c618d67dd4a42f798baaab47634018cb1db4b
treecaf80ec4858193108b67724189ce69a2b7b3ea8a
parentbf46241bee7bc3ec28703796f4fbd56085055fca
ASoC: intel: mfld: 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 87023ff74b23 ("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>
Acked-by: Vinod Koul <vinod.koul@intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/intel/boards/mfld_machine.c