Skip to content

Commit 2a0aa0f

Browse files
Junlin Yangsre
authored andcommitted
power: supply: charger-manager: fix typo
Change 'exeeds' to 'exceeds'. Signed-off-by: Junlin Yang <[email protected]> Signed-off-by: Sebastian Reichel <[email protected]>
1 parent 9483b96 commit 2a0aa0f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/power/supply/charger-manager.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -570,15 +570,15 @@ static int cm_get_target_status(struct charger_manager *cm)
570570
return POWER_SUPPLY_STATUS_DISCHARGING;
571571

572572
if (cm_check_thermal_status(cm)) {
573-
/* Check if discharging duration exeeds limit. */
573+
/* Check if discharging duration exceeds limit. */
574574
if (check_charging_duration(cm))
575575
goto charging_ok;
576576
return POWER_SUPPLY_STATUS_NOT_CHARGING;
577577
}
578578

579579
switch (cm->battery_status) {
580580
case POWER_SUPPLY_STATUS_CHARGING:
581-
/* Check if charging duration exeeds limit. */
581+
/* Check if charging duration exceeds limit. */
582582
if (check_charging_duration(cm))
583583
return POWER_SUPPLY_STATUS_FULL;
584584
fallthrough;

0 commit comments

Comments
 (0)