aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/arch/x86/platform/olpc
diff options
context:
space:
mode:
authorKrzysztof Kozlowski <k.kozlowski@samsung.com>2015-03-12 08:44:16 +0100
committerSebastian Reichel <sre@kernel.org>2015-03-13 23:15:53 +0100
commit67273a1b421a12ef77bcf08b027d165f399054ae (patch)
tree8f299f21141be00c1bcab49959168fe8c8d94c14 /arch/x86/platform/olpc
parentx86/olpc/xo1/sci: Use newly added power_supply_put API (diff)
downloadwireguard-linux-67273a1b421a12ef77bcf08b027d165f399054ae.tar.xz
wireguard-linux-67273a1b421a12ef77bcf08b027d165f399054ae.zip
x86/olpc/xo15/sci: Use newly added power_supply_put API
Replace direct usage of put_device() with new API: power_supply_put(). Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> Acked-by: Pavel Machek <pavel@ucw.cz> Reviewed-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> Reviewed-by: Sebastian Reichel <sre@kernel.org> Acked-by: Ingo Molnar <mingo@kernel.org> Signed-off-by: Sebastian Reichel <sre@kernel.org>
Diffstat (limited to 'arch/x86/platform/olpc')
-rw-r--r--arch/x86/platform/olpc/olpc-xo15-sci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/platform/olpc/olpc-xo15-sci.c b/arch/x86/platform/olpc/olpc-xo15-sci.c
index 186634e9021d..55130846ac87 100644
--- a/arch/x86/platform/olpc/olpc-xo15-sci.c
+++ b/arch/x86/platform/olpc/olpc-xo15-sci.c
@@ -83,7 +83,7 @@ static void battery_status_changed(void)
if (psy) {
power_supply_changed(psy);
- put_device(&psy->dev);
+ power_supply_put(psy);
}
}
@@ -93,7 +93,7 @@ static void ac_status_changed(void)
if (psy) {
power_supply_changed(psy);
- put_device(&psy->dev);
+ power_supply_put(psy);
}
}