mirror of
https://github.com/hardkernel/linux.git
synced 2026-03-24 19:40:21 +09:00
power: supply: generic-adc-battery: fix unit scaling
[ Upstream commit44263f5006] power-supply properties are reported in µV, µA and µW. The IIO API provides mV, mA, mW, so the values need to be multiplied by 1000. Fixes:e60fea794e("power: battery: Generic battery driver using IIO") Reviewed-by: Linus Walleij <linus.walleij@linaro.org> Reviewed-by: Matti Vaittinen <mazziesaccount@gmail.com> Signed-off-by: Sebastian Reichel <sre@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
37f689d859
commit
a2b3eaaa97
@@ -135,6 +135,9 @@ static int read_channel(struct gab *adc_bat, enum power_supply_property psp,
|
||||
result);
|
||||
if (ret < 0)
|
||||
pr_err("read channel error\n");
|
||||
else
|
||||
*result *= 1000;
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user