Skip to content

Commit

Permalink
lp8727_charger: Make lp8727_charger_get_propery() simpler
Browse files Browse the repository at this point in the history
Charger has only one valid property - ONLINE. If the property is not
ONLINE, then just return quickly.

Signed-off-by: Milo(Woogyom) Kim <milo.kim@ti.com>
Signed-off-by: Anton Vorontsov <anton.vorontsov@linaro.org>
  • Loading branch information
Kim, Milo authored and Anton Vorontsov committed Sep 21, 2012
1 parent 91a6963 commit b59c93c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions drivers/power/lp8727_charger.c
Original file line number Diff line number Diff line change
Expand Up @@ -305,9 +305,10 @@ static int lp8727_charger_get_property(struct power_supply *psy,
{
struct lp8727_chg *pchg = dev_get_drvdata(psy->dev->parent);

if (psp == POWER_SUPPLY_PROP_ONLINE)
val->intval = lp8727_is_charger_attached(psy->name,
pchg->devid);
if (psp != POWER_SUPPLY_PROP_ONLINE)
return -EINVAL;

val->intval = lp8727_is_charger_attached(psy->name, pchg->devid);

return 0;
}
Expand Down

0 comments on commit b59c93c

Please sign in to comment.