diff options
author | Matt Flax <flatmax@flatmax.org> | 2019-05-08 16:33:13 +1000 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-05-13 12:37:44 +0100 |
commit | f3df05c805983427319eddc2411a2105ee1757cf (patch) | |
tree | 5f62a6006fbfb806604e40cb45a696dc39c8a43f | |
parent | 8199a12037892f01e2cf5bedf5fbf08dff11b282 (diff) | |
download | linux-next-f3df05c805983427319eddc2411a2105ee1757cf.tar.gz |
ASoC : cs4265 : readable register too low
The cs4265_readable_register function stopped short of the maximum
register.
An example bug is taken from :
https://github.com/Audio-Injector/Ultra/issues/25
Where alsactl store fails with :
Cannot read control '2,0,0,C Data Buffer,0': Input/output error
This patch fixes the bug by setting the cs4265 to have readable
registers up to the maximum hardware register CS4265_MAX_REGISTER.
Signed-off-by: Matt Flax <flatmax@flatmax.org>
Reviewed-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/codecs/cs4265.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/cs4265.c b/sound/soc/codecs/cs4265.c index ab27d2b94d02..c0190ec59e74 100644 --- a/sound/soc/codecs/cs4265.c +++ b/sound/soc/codecs/cs4265.c @@ -60,7 +60,7 @@ static const struct reg_default cs4265_reg_defaults[] = { static bool cs4265_readable_register(struct device *dev, unsigned int reg) { switch (reg) { - case CS4265_CHIP_ID ... CS4265_SPDIF_CTL2: + case CS4265_CHIP_ID ... CS4265_MAX_REGISTER: return true; default: return false; |