[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1368514463-4035-1-git-send-email-srinivas.kandagatla@st.com>
Date: Tue, 14 May 2013 07:54:23 +0100
From: Srinivas KANDAGATLA <srinivas.kandagatla@...com>
To: broonie@...nel.org
Cc: srinivas.kandagatla@...com, gregkh@...uxfoundation.org,
linux-kernel@...r.kernel.org
Subject: [PATCH v1] regmap: debugfs: Fix return from regmap_debugfs_get_dump_start
From: Srinivas Kandagatla <srinivas.kandagatla@...com>
regmap_debugfs_get_dump_start should return the offset of the register
it should start reading from, However in the current code at one point
the code does not return correct register offset.
With this patch all the returns from this function takes reg_stride in
to consideration to return correct offset.
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@...com>
---
drivers/base/regmap/regmap-debugfs.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/base/regmap/regmap-debugfs.c b/drivers/base/regmap/regmap-debugfs.c
index 23b701f..2ec4dad 100644
--- a/drivers/base/regmap/regmap-debugfs.c
+++ b/drivers/base/regmap/regmap-debugfs.c
@@ -145,7 +145,7 @@ static unsigned int regmap_debugfs_get_dump_start(struct regmap *map,
reg_offset = fpos_offset / map->debugfs_tot_len;
*pos = c->min + (reg_offset * map->debugfs_tot_len);
mutex_unlock(&map->cache_lock);
- return c->base_reg + reg_offset;
+ return c->base_reg + (reg_offset * map->reg_stride);
}
*pos = c->max;
--
1.7.6.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists