* Krzysztof Kozlowski <k.kozlow...@samsung.com> wrote: > Replace direct usage of put_device() with new API: power_supply_put(). > > Signed-off-by: Krzysztof Kozlowski <k.kozlow...@samsung.com> > Acked-by: Pavel Machek <pa...@ucw.cz> > Reviewed-by: Bartlomiej Zolnierkiewicz <b.zolnier...@samsung.com> > Reviewed-by: Sebastian Reichel <s...@kernel.org> > --- > arch/x86/platform/olpc/olpc-xo15-sci.c | 4 ++-- > 1 file 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); > } > }
Acked-by: Ingo Molnar <mi...@kernel.org> Thanks, Ingo -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/