diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2013-01-08 13:47:52 -0500 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2013-01-08 15:52:51 -0500 |
commit | e8d6539c8a94b88fc7ca5d6bdd9eeb0e64b434e4 (patch) | |
tree | 8ed281160ac777c4f42e2f93e291329ab6c43d8c /drivers | |
parent | 5bd9f4bb34c16b62725b9486a290c01b1fdfec1c (diff) |
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, | |||
116 | } | 116 | } |
117 | } | 117 | } |
118 | 118 | ||
119 | /* Close the last entry off if we didn't scan beyond it */ | ||
120 | if (c) { | ||
121 | c->max = p - 1; | ||
122 | list_add_tail(&c->list, | ||
123 | &map->debugfs_off_cache); | ||
124 | } else { | ||
125 | return base; | ||
126 | } | ||
127 | |||
119 | /* | 128 | /* |
120 | * This should never happen; we return above if we fail to | 129 | * This should never happen; we return above if we fail to |
121 | * allocate and we should never be in this code if there are | 130 | * allocate and we should never be in this code if there are |