ASoC: rsnd: gen: fixup Gen2 channel size
Gen2 has 0 - 9, total 10 channels, not 9 channels. Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Mark Brown <broonie@linaro.org>
This commit is contained in:
parent
60dbb4f174
commit
1a1c75a798
|
@ -217,11 +217,11 @@ int rsnd_gen_path_exit(struct rsnd_priv *priv,
|
||||||
|
|
||||||
/* single address mapping */
|
/* single address mapping */
|
||||||
#define RSND_GEN2_S_REG(gen, reg, id, offset) \
|
#define RSND_GEN2_S_REG(gen, reg, id, offset) \
|
||||||
RSND_REG_SET(gen, RSND_REG_##id, RSND_GEN2_##reg, offset, 0, 9)
|
RSND_REG_SET(gen, RSND_REG_##id, RSND_GEN2_##reg, offset, 0, 10)
|
||||||
|
|
||||||
/* multi address mapping */
|
/* multi address mapping */
|
||||||
#define RSND_GEN2_M_REG(gen, reg, id, offset, _id_offset) \
|
#define RSND_GEN2_M_REG(gen, reg, id, offset, _id_offset) \
|
||||||
RSND_REG_SET(gen, RSND_REG_##id, RSND_GEN2_##reg, offset, _id_offset, 9)
|
RSND_REG_SET(gen, RSND_REG_##id, RSND_GEN2_##reg, offset, _id_offset, 10)
|
||||||
|
|
||||||
static int rsnd_gen2_regmap_init(struct rsnd_priv *priv, struct rsnd_gen *gen)
|
static int rsnd_gen2_regmap_init(struct rsnd_priv *priv, struct rsnd_gen *gen)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue