diff options
author | Kim, Milo <Milo.Kim@ti.com> | 2012-08-31 05:27:22 -0400 |
---|---|---|
committer | Anton Vorontsov <anton.vorontsov@linaro.org> | 2012-09-20 21:07:23 -0400 |
commit | b9633ef1a9cdf4317d8c4a8db977485e2a8e1cb8 (patch) | |
tree | 1049e8bd660fc9b8350e51b33c85696e0f383985 /drivers/power | |
parent | 18259cac98884522a46c24a73ef8d4879d824607 (diff) |
lp8727_charger: More pure cosmetic improvements
This is really minor, but it improves the readability.
Signed-off-by: Milo(Woogyom) Kim <milo.kim@ti.com>
Signed-off-by: Anton Vorontsov <anton.vorontsov@linaro.org>
Diffstat (limited to 'drivers/power')
-rw-r--r-- | drivers/power/lp8727_charger.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/power/lp8727_charger.c b/drivers/power/lp8727_charger.c index 717a97690dd4..c628224b7f58 100644 --- a/drivers/power/lp8727_charger.c +++ b/drivers/power/lp8727_charger.c | |||
@@ -149,7 +149,6 @@ static int lp8727_init_device(struct lp8727_chg *pchg) | |||
149 | if (ret) | 149 | if (ret) |
150 | return ret; | 150 | return ret; |
151 | 151 | ||
152 | |||
153 | val = LP8727_ID200_EN | LP8727_ADC_EN | LP8727_CP_EN; | 152 | val = LP8727_ID200_EN | LP8727_ADC_EN | LP8727_CP_EN; |
154 | ret = lp8727_write_byte(pchg, LP8727_CTRL1, val); | 153 | ret = lp8727_write_byte(pchg, LP8727_CTRL1, val); |
155 | if (ret) | 154 | if (ret) |
@@ -162,6 +161,7 @@ static int lp8727_init_device(struct lp8727_chg *pchg) | |||
162 | static int lp8727_is_dedicated_charger(struct lp8727_chg *pchg) | 161 | static int lp8727_is_dedicated_charger(struct lp8727_chg *pchg) |
163 | { | 162 | { |
164 | u8 val; | 163 | u8 val; |
164 | |||
165 | lp8727_read_byte(pchg, LP8727_STATUS1, &val); | 165 | lp8727_read_byte(pchg, LP8727_STATUS1, &val); |
166 | return val & LP8727_DCPORT; | 166 | return val & LP8727_DCPORT; |
167 | } | 167 | } |
@@ -169,6 +169,7 @@ static int lp8727_is_dedicated_charger(struct lp8727_chg *pchg) | |||
169 | static int lp8727_is_usb_charger(struct lp8727_chg *pchg) | 169 | static int lp8727_is_usb_charger(struct lp8727_chg *pchg) |
170 | { | 170 | { |
171 | u8 val; | 171 | u8 val; |
172 | |||
172 | lp8727_read_byte(pchg, LP8727_STATUS1, &val); | 173 | lp8727_read_byte(pchg, LP8727_STATUS1, &val); |
173 | return val & LP8727_CHPORT; | 174 | return val & LP8727_CHPORT; |
174 | } | 175 | } |