From: Krzysztof Kozlowski Date: Tue, 24 Feb 2015 09:52:13 +0000 (+0100) Subject: power_supply: rt5033: Constify struct regmap_config X-Git-Tag: firefly_0821_release~176^2~2007^2~55 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=65ce1c954985e3d9805124d061ce63a63aa625ce;p=firefly-linux-kernel-4.4.55.git power_supply: rt5033: Constify struct regmap_config The regmap_config struct may be const because it is not modified by the driver and regmap_init() accepts pointer to const. Signed-off-by: Krzysztof Kozlowski Signed-off-by: Sebastian Reichel --- diff --git a/drivers/power/rt5033_battery.c b/drivers/power/rt5033_battery.c index 7b898f41c595..995247af14fc 100644 --- a/drivers/power/rt5033_battery.c +++ b/drivers/power/rt5033_battery.c @@ -102,7 +102,7 @@ static enum power_supply_property rt5033_battery_props[] = { POWER_SUPPLY_PROP_CAPACITY, }; -static struct regmap_config rt5033_battery_regmap_config = { +static const struct regmap_config rt5033_battery_regmap_config = { .reg_bits = 8, .val_bits = 8, .max_register = RT5033_FUEL_REG_END,