diff options
author | Krzysztof Kozlowski <k.kozlowski@samsung.com> | 2015-03-12 03:44:20 -0400 |
---|---|---|
committer | Sebastian Reichel <sre@kernel.org> | 2015-03-13 18:15:55 -0400 |
commit | d3a6097b25e09751cba787b33eba26ab4df86215 (patch) | |
tree | e824853ce52173c2086e74d39d5897e5a007fca8 | |
parent | 6ff9d25baf0101bbae2c443e26d60233ea8f2680 (diff) |
arm: mach-pxa: Decrement the power supply's device reference counter
Use power_supply_put() to decrement the power supply's device reference
counter.
Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Reviewed-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Reviewed-by: Sebastian Reichel <sre@kernel.org>
Acked-by: Robert Jarzmik <robert.jarzmik@free.fr>
Acked-by: Pavel Machek <pavel@ucw.cz>
Signed-off-by: Sebastian Reichel <sre@kernel.org>
-rw-r--r-- | arch/arm/mach-pxa/raumfeld.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/arm/mach-pxa/raumfeld.c b/arch/arm/mach-pxa/raumfeld.c index a762b23ac830..6dc4f025e674 100644 --- a/arch/arm/mach-pxa/raumfeld.c +++ b/arch/arm/mach-pxa/raumfeld.c | |||
@@ -758,8 +758,10 @@ static void raumfeld_power_signal_charged(void) | |||
758 | struct power_supply *psy = | 758 | struct power_supply *psy = |
759 | power_supply_get_by_name(raumfeld_power_supplicants[0]); | 759 | power_supply_get_by_name(raumfeld_power_supplicants[0]); |
760 | 760 | ||
761 | if (psy) | 761 | if (psy) { |
762 | power_supply_set_battery_charged(psy); | 762 | power_supply_set_battery_charged(psy); |
763 | power_supply_put(psy); | ||
764 | } | ||
763 | } | 765 | } |
764 | 766 | ||
765 | static int raumfeld_power_resume(void) | 767 | static int raumfeld_power_resume(void) |