Loading drivers/power/supply/qcom/pmic-voter.c +4 −2 Original line number Diff line number Diff line Loading @@ -438,12 +438,14 @@ int vote(struct votable *votable, const char *client_str, bool enabled, int val) int rerun_election(struct votable *votable) { int rc = 0; int effective_result; lock_votable(votable); effective_result = get_effective_result_locked(votable); if (votable->callback) rc = votable->callback(votable, votable->data, votable->effective_result, effective_result, get_client_str(votable, votable->effective_client_id)); unlock_votable(votable); return rc; Loading Loading
drivers/power/supply/qcom/pmic-voter.c +4 −2 Original line number Diff line number Diff line Loading @@ -438,12 +438,14 @@ int vote(struct votable *votable, const char *client_str, bool enabled, int val) int rerun_election(struct votable *votable) { int rc = 0; int effective_result; lock_votable(votable); effective_result = get_effective_result_locked(votable); if (votable->callback) rc = votable->callback(votable, votable->data, votable->effective_result, effective_result, get_client_str(votable, votable->effective_client_id)); unlock_votable(votable); return rc; Loading