Reported-by: Vincent Stehlé <v-ste...@ti.com> Reported-by: Arnd Bergmann <a...@arndb.de> Signed-off-by: Mark Brown <broo...@opensource.wolfsonmicro.com> --- drivers/base/regmap/regmap-debugfs.c | 7 +++++++ 1 file changed, 7 insertions(+)
diff --git a/drivers/base/regmap/regmap-debugfs.c b/drivers/base/regmap/regmap-debugfs.c index d9a6c94..c6dc2e9 100644 --- a/drivers/base/regmap/regmap-debugfs.c +++ b/drivers/base/regmap/regmap-debugfs.c @@ -133,6 +133,13 @@ static unsigned int regmap_debugfs_get_dump_start(struct regmap *map, return base; } + /* + * Work around GCC flow analysis - it can't figure out we have + * at least one loop iteration. + */ + *pos = c->min; + ret = c->base_reg; + /* Find the relevant block */ list_for_each_entry(c, &map->debugfs_off_cache, list) { if (from >= c->min && from <= c->max) { -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/