Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit f3df05c8 authored by Matt Flax's avatar Matt Flax Committed by Mark Brown
Browse files

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: default avatarMatt Flax <flatmax@flatmax.org>
Reviewed-by: default avatarCharles Keepax <ckeepax@opensource.cirrus.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 8199a120
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -60,7 +60,7 @@ static const struct reg_default cs4265_reg_defaults[] = {
static bool cs4265_readable_register(struct device *dev, unsigned int reg)
static bool cs4265_readable_register(struct device *dev, unsigned int reg)
{
{
	switch (reg) {
	switch (reg) {
	case CS4265_CHIP_ID ... CS4265_SPDIF_CTL2:
	case CS4265_CHIP_ID ... CS4265_MAX_REGISTER:
		return true;
		return true;
	default:
	default:
		return false;
		return false;