projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
68c3ed6
)
power_supply: ipaq_micro_battery: Fix leaking workqueue
author
Krzysztof Kozlowski
<k.kozlowski@samsung.com>
Fri, 20 Feb 2015 13:32:23 +0000
(14:32 +0100)
committer
Sebastian Reichel
<sre@kernel.org>
Wed, 25 Feb 2015 21:18:18 +0000
(22:18 +0100)
Driver allocates singlethread workqueue in probe but it is not destroyed
during removal.
Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Fixes: 00a588f9d27f ("power: add driver for battery reading on iPaq h3xxx")
Cc: <stable@vger.kernel.org>
Signed-off-by: Sebastian Reichel <sre@kernel.org>
drivers/power/ipaq_micro_battery.c
patch
|
blob
|
history
diff --git
a/drivers/power/ipaq_micro_battery.c
b/drivers/power/ipaq_micro_battery.c
index 9d694605cdb77f35456dad106425b760266f7927..698cf1636bb891b852ad687405753a1f8705561a 100644
(file)
--- a/
drivers/power/ipaq_micro_battery.c
+++ b/
drivers/power/ipaq_micro_battery.c
@@
-251,6
+251,7
@@
static int micro_batt_remove(struct platform_device *pdev)
power_supply_unregister(µ_ac_power);
power_supply_unregister(µ_batt_power);
cancel_delayed_work_sync(&mb->update);
+ destroy_workqueue(mb->wq);
return 0;
}