Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 357575
b: refs/heads/master
c: 0cc9d08
h: refs/heads/master
i:
  357573: 6b2ff0d
  357571: f6a25fd
  357567: ebe494f
v: v3
  • Loading branch information
Mark Brown authored and Samuel Ortiz committed Feb 13, 2013
1 parent 3588b72 commit cb47c1f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f1c68e4dd455eeaf30647a52595a7daf62fc5492
refs/heads/master: 0cc9d08d3dca174ee712044e299732f26fdab22d
8 changes: 7 additions & 1 deletion trunk/drivers/mfd/wm5102-tables.c
Original file line number Diff line number Diff line change
Expand Up @@ -1826,7 +1826,13 @@ static bool wm5102_readable_register(struct device *dev, unsigned int reg)
case ARIZONA_DSP1_STATUS_3:
return true;
default:
return false;
if ((reg >= 0x100000 && reg < 0x106000) ||
(reg >= 0x180000 && reg < 0x180800) ||
(reg >= 0x190000 && reg < 0x194800) ||
(reg >= 0x1a8000 && reg < 0x1a9800))
return true;
else
return false;
}
}

Expand Down

0 comments on commit cb47c1f

Please sign in to comment.