power: supply: sc2731_charger: Avoid repeated charge/discharge
Add info->charging validation to avoid repeated charge or discharge operation. Signed-off-by: Baolin Wang <baolin.wang@linaro.org> Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
This commit is contained in:
parent
18c807dbf9
commit
a8aaff6be0
@ -328,7 +328,7 @@ static void sc2731_charger_work(struct work_struct *data)
|
||||
|
||||
mutex_lock(&info->lock);
|
||||
|
||||
if (info->limit > 0) {
|
||||
if (info->limit > 0 && !info->charging) {
|
||||
/* set current limitation and start to charge */
|
||||
ret = sc2731_charger_set_current_limit(info, info->limit);
|
||||
if (ret)
|
||||
@ -343,7 +343,7 @@ static void sc2731_charger_work(struct work_struct *data)
|
||||
goto out;
|
||||
|
||||
info->charging = true;
|
||||
} else {
|
||||
} else if (!info->limit && info->charging) {
|
||||
/* Stop charging */
|
||||
info->charging = false;
|
||||
sc2731_charger_stop_charge(info);
|
||||
|
Loading…
Reference in New Issue
Block a user