mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-16 13:41:48 -04:00
ASoC: SDCA: mask Function_Status value
According to the SDCA specification [1], when writing Function_Status during
handling this control, the value should mask off bit 7.
[1] MIPI Specification for SoundWire Device Class for Audio, version
1.1, section 7.14.1.3 (Host Software Handling of Function_Status)
Signed-off-by: Maciej Strozek <mstrozek@opensource.cirrus.com>
Signed-off-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Link: https://patch.msgid.link/20260408093835.2881486-3-ckeepax@opensource.cirrus.com
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
committed by
Mark Brown
parent
23e0cbe557
commit
58dec4fac4
@@ -138,7 +138,7 @@ static irqreturn_t function_status_handler(int irq, void *data)
|
||||
}
|
||||
}
|
||||
|
||||
ret = regmap_write(interrupt->function_regmap, reg, val);
|
||||
ret = regmap_write(interrupt->function_regmap, reg, val & 0x7F);
|
||||
if (ret < 0) {
|
||||
dev_err(dev, "failed to clear function status: %d\n", ret);
|
||||
goto error;
|
||||
|
||||
Reference in New Issue
Block a user