From: Geert Uytterhoeven Date: Tue, 22 Apr 2014 10:47:29 +0000 (+0200) Subject: regmap: Add missing initialization of this_page X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=b48d13988bee440e43a510ea8878f1f329cee189;p=linux.git regmap: Add missing initialization of this_page drivers/base/regmap/regmap.c: In function ‘_regmap_range_multi_paged_reg_write’: drivers/base/regmap/regmap.c:1665: warning: ‘this_page’ may be used uninitialized in this function Signed-off-by: Geert Uytterhoeven Signed-off-by: Mark Brown --- diff --git a/drivers/base/regmap/regmap.c b/drivers/base/regmap/regmap.c index 9596f3048939d..35869755d4649 100644 --- a/drivers/base/regmap/regmap.c +++ b/drivers/base/regmap/regmap.c @@ -1665,7 +1665,7 @@ static int _regmap_range_multi_paged_reg_write(struct regmap *map, int ret; int i, n; struct reg_default *base; - unsigned int this_page; + unsigned int this_page = 0; /* * the set of registers are not neccessarily in order, but * since the order of write must be preserved this algorithm