Alsa-Devel Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ASoC : cs4265 : readable register too low
@ 2019-05-08  6:33 Matt Flax
  2019-05-09 10:45 ` Charles Keepax
  2019-05-13 12:30 ` Applied "ASoC : cs4265 : readable register too low" to the asoc tree Mark Brown
  0 siblings, 2 replies; 3+ messages in thread
From: Matt Flax @ 2019-05-08  6:33 UTC (permalink / raw)
  To: Liam Girdwood, Mark Brown, Brian Austin, Paul Handrigan, clemens,
	ckeepax, alsa-devel
  Cc: Matt Flax

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>
---
 sound/soc/codecs/cs4265.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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;
-- 
2.19.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-05-13 12:30 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-05-08  6:33 [PATCH] ASoC : cs4265 : readable register too low Matt Flax
2019-05-09 10:45 ` Charles Keepax
2019-05-13 12:30 ` Applied "ASoC : cs4265 : readable register too low" to the asoc tree Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox