diff options
author | Hector Martin <marcan@marcan.st> | 2025-02-08 01:03:26 +0000 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2025-02-16 23:51:28 +0000 |
commit | f37f1748564ac51d32f7588bd7bfc99913ccab8e (patch) | |
tree | ac574f4881e1c33971ac1479099e061d068a4959 | |
parent | 08a66f55f7246d477b19620a953476dfc02beefc (diff) |
ASoC: tas2764: Mark SW_RESET as volatile
Since the bit is self-clearing.
Signed-off-by: Hector Martin <marcan@marcan.st>
Signed-off-by: Mark Brown <broonie@kernel.org>
Link: https://patch.msgid.link/20250208-asoc-tas2764-v1-3-dbab892a69b5@kernel.org
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/codecs/tas2764.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/codecs/tas2764.c b/sound/soc/codecs/tas2764.c index 0b033ab51f7f..d01333c7dd93 100644 --- a/sound/soc/codecs/tas2764.c +++ b/sound/soc/codecs/tas2764.c @@ -642,6 +642,7 @@ static const struct regmap_range_cfg tas2764_regmap_ranges[] = { static bool tas2764_volatile_register(struct device *dev, unsigned int reg) { switch (reg) { + case TAS2764_SW_RST: case TAS2764_INT_LTCH0 ... TAS2764_INT_LTCH4: case TAS2764_INT_CLK_CFG: return true; |