1
0
Fork 0

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: a2c1d53185 ('power_supply: ipaq_micro_battery: Check return values in probe')
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Sebastian Reichel <sre@kernel.org>
steinar/wifi_calib_4_9_kernel
Dan Carpenter 2016-03-18 12:00:51 +03:00 committed by Sebastian Reichel
parent 1285b0a30d
commit b9223da417
1 changed files with 1 additions and 1 deletions

View File

@ -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);