1
0
Fork 0

power_supply: bq27x00: fix voltage and current units

The chip returns voltage and current in mV and mA, but
power supply class uses uV and uA, so add missing conversion.

Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
Signed-off-by: Anton Vorontsov <cbouatmailru@gmail.com>
hifive-unleashed-5.1
Grazvydas Ignotas 2010-02-27 17:06:44 +02:00 committed by Anton Vorontsov
parent 4e924a814a
commit afbc74fdc5
1 changed files with 3 additions and 3 deletions

View File

@ -125,7 +125,7 @@ static int bq27x00_battery_voltage(struct bq27x00_device_info *di)
return ret;
}
return volt;
return volt * 1000;
}
/*
@ -156,11 +156,11 @@ static int bq27x00_battery_current(struct bq27x00_device_info *di)
}
if (flags & BQ27000_FLAG_CHGS) {
dev_dbg(di->dev, "negative current!\n");
return -curr;
curr = -curr;
}
}
return curr;
return curr * 1000;
}
/*