diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2013-01-08 18:47:52 +0000 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2013-01-08 20:52:51 +0000 |
commit | e8d6539c8a94b88fc7ca5d6bdd9eeb0e64b434e4 (patch) | |
tree | 8ed281160ac777c4f42e2f93e291329ab6c43d8c /drivers | |
parent | 5bd9f4bb34c16b62725b9486a290c01b1fdfec1c (diff) | |
download | linux-e8d6539c8a94b88fc7ca5d6bdd9eeb0e64b434e4.tar.bz2 |
regmap: debugfs: Make sure we store the last entry in the offset cache
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/base/regmap/regmap-debugfs.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/base/regmap/regmap-debugfs.c b/drivers/base/regmap/regmap-debugfs.c index 720e14248167..46a213a596e2 100644 --- a/drivers/base/regmap/regmap-debugfs.c +++ b/drivers/base/regmap/regmap-debugfs.c @@ -116,6 +116,15 @@ static unsigned int regmap_debugfs_get_dump_start(struct regmap *map, } } + /* Close the last entry off if we didn't scan beyond it */ + if (c) { + c->max = p - 1; + list_add_tail(&c->list, + &map->debugfs_off_cache); + } else { + return base; + } + /* * This should never happen; we return above if we fail to * allocate and we should never be in this code if there are |