lp8727_charger: Make lp8727_init_device() shorter
Just return with lp8727_write_byte(), no need to check its value. Signed-off-by: Milo(Woogyom) Kim <milo.kim@ti.com> Signed-off-by: Anton Vorontsov <anton.vorontsov@linaro.org>
This commit is contained in:
parent
65272bac3a
commit
70be130529
@ -152,11 +152,7 @@ static int lp8727_init_device(struct lp8727_chg *pchg)
|
|||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
val = LP8727_INT_EN | LP8727_CHGDET_EN;
|
val = LP8727_INT_EN | LP8727_CHGDET_EN;
|
||||||
ret = lp8727_write_byte(pchg, LP8727_CTRL2, val);
|
return lp8727_write_byte(pchg, LP8727_CTRL2, val);
|
||||||
if (ret)
|
|
||||||
return ret;
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int lp8727_is_dedicated_charger(struct lp8727_chg *pchg)
|
static int lp8727_is_dedicated_charger(struct lp8727_chg *pchg)
|
||||||
|
Loading…
Reference in New Issue
Block a user