From: Sebastian Krzyszkowiak Date: Tue, 14 Sep 2021 12:18:06 +0000 (+0200) Subject: power: supply: max17042_battery: Prevent int underflow in set_soc_threshold X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=e660dbb68c6b3f7b9eb8b9775846a44f9798b719;p=linux.git power: supply: max17042_battery: Prevent int underflow in set_soc_threshold max17042_set_soc_threshold gets called with offset set to 1, which means that minimum threshold value would underflow once SOC got down to 0, causing invalid alerts from the gauge. Fixes: e5f3872d2044 ("max17042: Add support for signalling change in SOC") Cc: Signed-off-by: Sebastian Krzyszkowiak Reviewed-by: Krzysztof Kozlowski Signed-off-by: Sebastian Reichel --- diff --git a/drivers/power/supply/max17042_battery.c b/drivers/power/supply/max17042_battery.c index 2eb61856f3e44..87128cf0d5775 100644 --- a/drivers/power/supply/max17042_battery.c +++ b/drivers/power/supply/max17042_battery.c @@ -860,7 +860,8 @@ static void max17042_set_soc_threshold(struct max17042_chip *chip, u16 off) regmap_read(map, MAX17042_RepSOC, &soc); soc >>= 8; soc_tr = (soc + off) << 8; - soc_tr |= (soc - off); + if (off < soc) + soc_tr |= soc - off; regmap_write(map, MAX17042_SALRT_Th, soc_tr); }