ASoC: remove one extraneous 'const'
authorArnd Bergmann <arnd@arndb.de>
Tue, 14 Jun 2016 10:17:52 +0000 (12:17 +0200)
committerMark Brown <broonie@kernel.org>
Tue, 14 Jun 2016 13:46:36 +0000 (14:46 +0100)
commit8f273aacc070490f2d5e02e52bbaa35d53a4df15
tree19c71a6a6d518e67bd2bdc4e736a32715845d0d2
parent10867b32a1cc2fb0b370c3d3601fccc587165128
ASoC: remove one extraneous 'const'

A recent commit made a few arrays 'const', but also added the
same attribute to a function return type, where it makes no
sense, and we get a warning when building with W=1:

sound/soc/codecs/arizona.c:1725:27: error: type qualifiers ignored on function return type [-Werror=ignored-qualifiers]
 static const char * const arizona_dai_clk_str(int clk_id)

This removes it again.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/arizona.c