power: supply: sbs-battery: relax voltage limit
authorMatthias Schiffer <matthias.schiffer@ew.tq-group.com>
Mon, 19 Jul 2021 07:20:18 +0000 (09:20 +0200)
committerSebastian Reichel <sebastian.reichel@collabora.com>
Fri, 6 Aug 2021 21:48:51 +0000 (23:48 +0200)
The Smart Battery Data Specification allows for values 0..65535 mV,
there is no reason to limit the value to 20000.

Signed-off-by: Matthias Schiffer <matthias.schiffer@ew.tq-group.com>
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
drivers/power/supply/sbs-battery.c

index f84dbaab283a0e866d18b96eb7ee9842765e2dde..3d6b8247d450790e4080afe176bb706d1f54e815 100644 (file)
@@ -102,7 +102,7 @@ static const struct chip_data {
        [REG_TEMPERATURE] =
                SBS_DATA(POWER_SUPPLY_PROP_TEMP, 0x08, 0, 65535),
        [REG_VOLTAGE] =
-               SBS_DATA(POWER_SUPPLY_PROP_VOLTAGE_NOW, 0x09, 0, 20000),
+               SBS_DATA(POWER_SUPPLY_PROP_VOLTAGE_NOW, 0x09, 0, 65535),
        [REG_CURRENT_NOW] =
                SBS_DATA(POWER_SUPPLY_PROP_CURRENT_NOW, 0x0A, -32768, 32767),
        [REG_CURRENT_AVG] =