projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7ce7d89
)
power: supply: bq24735-charger: simplify register update to stop charging
author
Peter Rosin
<peda@axentia.se>
Tue, 13 Dec 2016 23:56:43 +0000
(
00:56
+0100)
committer
Sebastian Reichel
<sre@kernel.org>
Wed, 4 Jan 2017 20:58:42 +0000
(21:58 +0100)
Providing value bits outside of the mask is pointless.
Signed-off-by: Peter Rosin <peda@axentia.se>
Signed-off-by: Sebastian Reichel <sre@kernel.org>
drivers/power/supply/bq24735-charger.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/power/supply/bq24735-charger.c
b/drivers/power/supply/bq24735-charger.c
index eb7783b42e0acdd2cf8eb4e1b75bbfdbc3df9605..1d5c9206e0edc6a924808de85e9043f701bcfeab 100644
(file)
--- a/
drivers/power/supply/bq24735-charger.c
+++ b/
drivers/power/supply/bq24735-charger.c
@@
-111,8
+111,7
@@
static inline int bq24735_enable_charging(struct bq24735 *charger)
return 0;
return bq24735_update_word(charger->client, BQ24735_CHG_OPT,
- BQ24735_CHG_OPT_CHARGE_DISABLE,
- ~BQ24735_CHG_OPT_CHARGE_DISABLE);
+ BQ24735_CHG_OPT_CHARGE_DISABLE, 0);
}
static inline int bq24735_disable_charging(struct bq24735 *charger)