Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b9223da4 authored by Dan Carpenter's avatar Dan Carpenter Committed by Sebastian Reichel
Browse files

power: ipaq-micro-battery: freeing the wrong variable



We accidentally free "micro_ac_power" which is an error pointer and it
leads to an oops.  We intended to free "micro_batt_power".

Fixes: a2c1d531 ('power_supply: ipaq_micro_battery: Check return values in probe')
Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarSebastian Reichel <sre@kernel.org>
parent 1285b0a3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -261,7 +261,7 @@ static int micro_batt_probe(struct platform_device *pdev)
	return 0;

ac_err:
	power_supply_unregister(micro_ac_power);
	power_supply_unregister(micro_batt_power);
batt_err:
	cancel_delayed_work_sync(&mb->update);
	destroy_workqueue(mb->wq);