OSDN Git Service

power: supply: twl4030_charger: fix charging current out-of-bounds
authorAndreas Kemnade <andreas@kemnade.info>
Mon, 17 Sep 2018 05:20:35 +0000 (07:20 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 25 Nov 2019 14:54:02 +0000 (15:54 +0100)
[ Upstream commit 8314c212f995bc0d06b54ad02ef0ab4089781540 ]

the charging current uses unsigned int variables, if we step back
if the current is still low, we would run into negative which
means setting the target to a huge value.
Better add checks here.

Signed-off-by: Andreas Kemnade <andreas@kemnade.info>
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/power/twl4030_charger.c

index bcd4dc3..14fed11 100644 (file)
@@ -449,7 +449,8 @@ static void twl4030_current_worker(struct work_struct *data)
 
        if (v < USB_MIN_VOLT) {
                /* Back up and stop adjusting. */
-               bci->usb_cur -= USB_CUR_STEP;
+               if (bci->usb_cur >= USB_CUR_STEP)
+                       bci->usb_cur -= USB_CUR_STEP;
                bci->usb_cur_target = bci->usb_cur;
        } else if (bci->usb_cur >= bci->usb_cur_target ||
                   bci->usb_cur + USB_CUR_STEP > USB_MAX_CURRENT) {