mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-07 11:26:02 +09:00
ASoC: rsnd: check src mod pointer for rsnd_mod_id()
commit 374503c610 upstream.
Without this patch, gcc 4.9.x says
sound/soc/sh/rcar/cmd.c: In function 'rsnd_cmd_init':
sound/soc/sh/rcar/cmd.c:85:14: warning: array subscript is below array\
bounds [-Warray-bounds]
data = path[rsnd_mod_id(src)] |
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Cc: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
890962b836
commit
548af581f9
@@ -82,6 +82,9 @@ static int rsnd_cmd_init(struct rsnd_mod *mod,
|
||||
[9] = 0x2,
|
||||
};
|
||||
|
||||
if (unlikely(!src))
|
||||
return -EIO;
|
||||
|
||||
data = path[rsnd_mod_id(src)] |
|
||||
cmd_case[rsnd_mod_id(src)] << 16;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user