Эх сурвалжийг харах

Merge "asoc: wsa884x: update INTR_CLEAR0/1 register to volatile"

qctecmdr 1 жил өмнө
parent
commit
b8506aa704

+ 4 - 0
asoc/codecs/wsa884x/wsa884x-regmap.c

@@ -1,6 +1,7 @@
 // SPDX-License-Identifier: GPL-2.0-only
 /*
  * Copyright (c) 2021, The Linux Foundation. All rights reserved.
+ * Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved.
  */
 
 #include <linux/regmap.h>
@@ -526,6 +527,9 @@ static bool wsa884x_volatile_register(struct device *dev, unsigned int reg)
 	if (reg == WSA884X_ANA_WO_CTL_0 || reg == WSA884X_ANA_WO_CTL_1)
 		return 1;
 
+	if (reg == WSA884X_INTR_CLEAR0 || reg == WSA884X_INTR_CLEAR1)
+		return 1;
+
 	return ((wsa884x_reg_access[WSA884X_REG(reg)] & RD_REG) &&
 		!(wsa884x_reg_access[WSA884X_REG(reg)] & WR_REG));
 }