Commit 252e6671 authored by Andrew Kreimer's avatar Andrew Kreimer Committed by Sebastian Reichel
Browse files

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: default avatarAndrew Kreimer <algonell@gmail.com>
Acked-by: default avatarChen-Yu Tsai <wens@csie.org>
Link: https://lore.kernel.org/r/20250206083405.10286-1-algonell@gmail.com


Signed-off-by: default avatarSebastian Reichel <sebastian.reichel@collabora.com>
parent a8936109
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -492,7 +492,7 @@ static int axp717_usb_power_set_input_current_limit(struct axp20x_usb_power *pow

	if (power->max_input_cur && (intval > power->max_input_cur)) {
		dev_warn(power->dev,
			 "reqested current %d clamped to max current %d\n",
			 "requested current %d clamped to max current %d\n",
			 intval, power->max_input_cur);
		intval = power->max_input_cur;
	}