We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9483b96 commit 2a0aa0fCopy full SHA for 2a0aa0f
drivers/power/supply/charger-manager.c
@@ -570,15 +570,15 @@ static int cm_get_target_status(struct charger_manager *cm)
570
return POWER_SUPPLY_STATUS_DISCHARGING;
571
572
if (cm_check_thermal_status(cm)) {
573
- /* Check if discharging duration exeeds limit. */
+ /* Check if discharging duration exceeds limit. */
574
if (check_charging_duration(cm))
575
goto charging_ok;
576
return POWER_SUPPLY_STATUS_NOT_CHARGING;
577
}
578
579
switch (cm->battery_status) {
580
case POWER_SUPPLY_STATUS_CHARGING:
581
- /* Check if charging duration exeeds limit. */
+ /* Check if charging duration exceeds limit. */
582
583
return POWER_SUPPLY_STATUS_FULL;
584
fallthrough;
0 commit comments