dect
/
linux-2.6
Archived
13
0
Fork 0

da9052-battery: Fix a memory leak when unload the module

Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Anton Vorontsov <anton.vorontsov@linaro.org>
This commit is contained in:
Axel Lin 2012-01-11 15:44:37 +08:00 committed by Anton Vorontsov
parent e1be832999
commit 61bb5a780d
1 changed files with 1 additions and 0 deletions

View File

@ -634,6 +634,7 @@ static int __devexit da9052_bat_remove(struct platform_device *pdev)
free_irq(bat->da9052->irq_base + irq, bat);
}
power_supply_unregister(&bat->psy);
kfree(bat);
return 0;
}