power: supply: check if calc_soc succeeded in pm860x_init_battery
authorTom Rix <trix@redhat.com>
Sun, 12 Jul 2020 19:23:51 +0000 (12:23 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 19 Aug 2020 06:24:01 +0000 (08:24 +0200)
commit68bcb83d4caae6b8d34b756a0aa251875c14e88b
tree193a178ff0ce937e3cd28dd8130b7af664f5c23f
parent9ef3fc00dd90ac22decc6b9065c3c90f412f62e7
power: supply: check if calc_soc succeeded in pm860x_init_battery

[ Upstream commit ccf193dee1f0fff55b556928591f7818bac1b3b1 ]

clang static analysis flags this error

88pm860x_battery.c:522:19: warning: Assigned value is
  garbage or undefined [core.uninitialized.Assign]
                info->start_soc = soc;
                                ^ ~~~
soc is set by calling calc_soc.
But calc_soc can return without setting soc.

So check the return status and bail similarly to other
checks in pm860x_init_battery and initialize soc to
silence the warning.

Fixes: a830d28b48bf ("power_supply: Enable battery-charger for 88pm860x")

Signed-off-by: Tom Rix <trix@redhat.com>
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/power/supply/88pm860x_battery.c