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:
parent
9e5a7c1106
commit
391fbf0d08
1 changed files with 3 additions and 0 deletions
|
|
@ -138,6 +138,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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue