mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 18:09:56 +00:00
power_supply: 88pm860x: Fix leaked power supply on probe fail
commit24727b45b4upstream. Driver forgot to unregister power supply if request_threaded_irq() failed in probe(). In such case the memory associated with power supply leaked. Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> Fixes:a830d28b48("power_supply: Enable battery-charger for 88pm860x") Signed-off-by: Sebastian Reichel <sre@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
b52ef41312
commit
cba19a2bc3
@@ -711,6 +711,7 @@ static int pm860x_charger_probe(struct platform_device *pdev)
|
||||
return 0;
|
||||
|
||||
out_irq:
|
||||
power_supply_unregister(&info->usb);
|
||||
while (--i >= 0)
|
||||
free_irq(info->irq[i], info);
|
||||
out:
|
||||
|
||||
Reference in New Issue
Block a user