aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sound/soc/rockchip/rockchip_i2s.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/rockchip/rockchip_i2s.c b/sound/soc/rockchip/rockchip_i2s.c
index 870a6645c782..fb9e05c9f471 100644
--- a/sound/soc/rockchip/rockchip_i2s.c
+++ b/sound/soc/rockchip/rockchip_i2s.c
@@ -362,6 +362,8 @@ static bool rockchip_i2s_rd_reg(struct device *dev, unsigned int reg)
362 case I2S_XFER: 362 case I2S_XFER:
363 case I2S_CLR: 363 case I2S_CLR:
364 case I2S_RXDR: 364 case I2S_RXDR:
365 case I2S_FIFOLR:
366 case I2S_INTSR:
365 return true; 367 return true;
366 default: 368 default:
367 return false; 369 return false;
@@ -371,8 +373,8 @@ static bool rockchip_i2s_rd_reg(struct device *dev, unsigned int reg)
371static bool rockchip_i2s_volatile_reg(struct device *dev, unsigned int reg) 373static bool rockchip_i2s_volatile_reg(struct device *dev, unsigned int reg)
372{ 374{
373 switch (reg) { 375 switch (reg) {
374 case I2S_FIFOLR:
375 case I2S_INTSR: 376 case I2S_INTSR:
377 case I2S_CLR:
376 return true; 378 return true;
377 default: 379 default:
378 return false; 380 return false;
@@ -382,8 +384,6 @@ static bool rockchip_i2s_volatile_reg(struct device *dev, unsigned int reg)
382static bool rockchip_i2s_precious_reg(struct device *dev, unsigned int reg) 384static bool rockchip_i2s_precious_reg(struct device *dev, unsigned int reg)
383{ 385{
384 switch (reg) { 386 switch (reg) {
385 case I2S_FIFOLR:
386 return true;
387 default: 387 default:
388 return false; 388 return false;
389 } 389 }