aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorMark Brown <broonie@opensource.wolfsonmicro.com>2013-01-08 15:40:19 -0500
committerMark Brown <broonie@opensource.wolfsonmicro.com>2013-01-08 15:52:45 -0500
commit5a1d6d172bc8a3ecf29add6c84d047025cb71566 (patch)
treeb800e66e7aa15e9536801aa04d2309530c8e3b87 /drivers
parent120f80518125b8c312007a54106759d608487553 (diff)
regmap: debugfs: Fix check for block start in cached seeks
Check for the block we were asked to start from, not the position we're in. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/base/regmap/regmap-debugfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/base/regmap/regmap-debugfs.c b/drivers/base/regmap/regmap-debugfs.c
index 43d51dc3d58b..e8d15db2f126 100644
--- a/drivers/base/regmap/regmap-debugfs.c
+++ b/drivers/base/regmap/regmap-debugfs.c
@@ -103,7 +103,7 @@ static unsigned int regmap_debugfs_get_dump_start(struct regmap *map,
103 103
104 /* Find the relevant block */ 104 /* Find the relevant block */
105 list_for_each_entry(c, &map->debugfs_off_cache, list) { 105 list_for_each_entry(c, &map->debugfs_off_cache, list) {
106 if (*pos >= c->min && *pos <= c->max) { 106 if (from >= c->min && from <= c->max) {
107 *pos = c->min; 107 *pos = c->min;
108 return c->base_reg; 108 return c->base_reg;
109 } 109 }