Browse Source

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>
Axel Lin 13 years ago
parent
commit
61bb5a780d
1 changed files with 1 additions and 0 deletions
  1. 1 0
      drivers/power/da9052-battery.c

+ 1 - 0
drivers/power/da9052-battery.c

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