Fixes: 6adb2d19d926 ("ASoC: audio-graph-card: Add audio mixer for motorold mdm6600") Signed-off-by: kbuild test robot <lkp@xxxxxxxxx> --- motmdm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sound/soc/codecs/motmdm.c b/sound/soc/codecs/motmdm.c index b337181..c6928ef 100644 --- a/sound/soc/codecs/motmdm.c +++ b/sound/soc/codecs/motmdm.c @@ -36,13 +36,13 @@ enum motmdm_cmd { CMD_AT_NREC, }; -const char * const motmd_read_fmt[] = { +static const char * const motmd_read_fmt[] = { [CMD_AT_EACC] = "AT+EACC?", [CMD_AT_CLVL] = "AT+CLVL?", [CMD_AT_NREC] = "AT+NREC?", }; -const char * const motmd_write_fmt[] = { +static const char * const motmd_write_fmt[] = { [CMD_AT_EACC] = "AT+EACC=%u,0", [CMD_AT_CLVL] = "AT+CLVL=%u", [CMD_AT_NREC] = "AT+NREC=%u",