diff options
author | Srinivas Kandagatla <srinivas.kandagatla@linaro.org> | 2021-01-19 17:47:00 +0000 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2021-01-20 16:46:47 +0000 |
commit | 1e066a23e76f90c9c39c189fe0dbf7c6e3dd5044 (patch) | |
tree | d3a11234119df0b946ede82a10dbbabc8c3b839e /sound/soc/qcom | |
parent | 40caffd66ca9ad1baa2d5541232675160bc6c772 (diff) | |
download | linux-1e066a23e76f90c9c39c189fe0dbf7c6e3dd5044.tar.gz linux-1e066a23e76f90c9c39c189fe0dbf7c6e3dd5044.tar.bz2 linux-1e066a23e76f90c9c39c189fe0dbf7c6e3dd5044.zip |
ASoC: qcom: lpass-ipq806x: fix bitwidth regmap field
BIT_WIDTH field in I2S_CTL register is two bits wide, however
recent regmap field conversion patch trimmed it down to one bit.
Fix this by correcting the bit range!
Fixes: b5022a36d28f ("ASoC: qcom: lpass: Use regmap_field for i2sctl and dmactl registers")
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Link: https://lore.kernel.org/r/20210119174700.32639-1-srinivas.kandagatla@linaro.org
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/qcom')
-rw-r--r-- | sound/soc/qcom/lpass-ipq806x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/qcom/lpass-ipq806x.c b/sound/soc/qcom/lpass-ipq806x.c index 92f98b4df47f..ef8a7984f232 100644 --- a/sound/soc/qcom/lpass-ipq806x.c +++ b/sound/soc/qcom/lpass-ipq806x.c @@ -131,7 +131,7 @@ static struct lpass_variant ipq806x_data = { .micmode = REG_FIELD_ID(0x0010, 4, 7, 5, 0x4), .micmono = REG_FIELD_ID(0x0010, 3, 3, 5, 0x4), .wssrc = REG_FIELD_ID(0x0010, 2, 2, 5, 0x4), - .bitwidth = REG_FIELD_ID(0x0010, 0, 0, 5, 0x4), + .bitwidth = REG_FIELD_ID(0x0010, 0, 1, 5, 0x4), .rdma_dyncclk = REG_FIELD_ID(0x6000, 12, 12, 4, 0x1000), .rdma_bursten = REG_FIELD_ID(0x6000, 11, 11, 4, 0x1000), |