Skip to content

Commit 252e667

Browse files
algonellsre
authored andcommitted
power: supply: axp20x_usb_power: Fix typo in dev_warn message
There is a typo in a dev_warn message: - reqested -> requested Fix it via codespell. Signed-off-by: Andrew Kreimer <algonell@gmail.com> Acked-by: Chen-Yu Tsai <wens@csie.org> Link: https://lore.kernel.org/r/20250206083405.10286-1-algonell@gmail.com Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
1 parent a893610 commit 252e667

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/power/supply/axp20x_usb_power.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ static int axp717_usb_power_set_input_current_limit(struct axp20x_usb_power *pow
492492

493493
if (power->max_input_cur && (intval > power->max_input_cur)) {
494494
dev_warn(power->dev,
495-
"reqested current %d clamped to max current %d\n",
495+
"requested current %d clamped to max current %d\n",
496496
intval, power->max_input_cur);
497497
intval = power->max_input_cur;
498498
}

0 commit comments

Comments
 (0)