* Krzysztof Kozlowski <[email protected]> wrote: > Replace direct usage of put_device() with new API: power_supply_put(). > > Signed-off-by: Krzysztof Kozlowski <[email protected]> > Acked-by: Pavel Machek <[email protected]> > Reviewed-by: Bartlomiej Zolnierkiewicz <[email protected]> > Reviewed-by: Sebastian Reichel <[email protected]> > --- > arch/x86/platform/olpc/olpc-xo1-sci.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/arch/x86/platform/olpc/olpc-xo1-sci.c > b/arch/x86/platform/olpc/olpc-xo1-sci.c > index e4ed28bbf79d..7fa8b3b53bc0 100644 > --- a/arch/x86/platform/olpc/olpc-xo1-sci.c > +++ b/arch/x86/platform/olpc/olpc-xo1-sci.c > @@ -61,7 +61,7 @@ static void battery_status_changed(void) > > if (psy) { > power_supply_changed(psy); > - put_device(&psy->dev); > + power_supply_put(psy); > } > } > > @@ -71,7 +71,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 <[email protected]> Thanks, Ingo _______________________________________________ devel mailing list [email protected] http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel
