aboutsummaryrefslogtreecommitdiff
path: root/drivers/base/regmap/regmap-debugfs.c
diff options
context:
space:
mode:
authorMark Brown <broonie@opensource.wolfsonmicro.com>2011-08-10 17:14:41 +0900
committerMark Brown <broonie@opensource.wolfsonmicro.com>2011-08-14 19:51:11 +0900
commit8de2f081ef8ee716663f916df9f2a7d015fa0dad (patch)
tree74319c3c14525f063754faab80406416b4a9f1dc /drivers/base/regmap/regmap-debugfs.c
parent13c54137f7896928ced8e97708d409fa39c09e00 (diff)
regmap: Add functions to check for access on registers
We're going to be using these in quite a few places so factor out the readable/writable/volatile/precious checks. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'drivers/base/regmap/regmap-debugfs.c')
-rw-r--r--drivers/base/regmap/regmap-debugfs.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/base/regmap/regmap-debugfs.c b/drivers/base/regmap/regmap-debugfs.c
index 6e304a4e270..fff8e832a98 100644
--- a/drivers/base/regmap/regmap-debugfs.c
+++ b/drivers/base/regmap/regmap-debugfs.c
@@ -52,12 +52,10 @@ static ssize_t regmap_map_read_file(struct file *file, char __user *user_buf,
tot_len = reg_len + val_len + 3; /* : \n */
for (i = 0; i < map->max_register; i++) {
- if (map->readable_reg &&
- !map->readable_reg(map->dev, i))
+ if (!regmap_readable(map, i))
continue;
- if (map->precious_reg &&
- map->precious_reg(map->dev, i))
+ if (regmap_precious(map, i))
continue;
/* If we're in the region the user is trying to read */