Commit 57dfd445 authored by Colin Ian King's avatar Colin Ian King Committed by Sebastian Reichel

power: supply: axp20x_usb_power: Fix spelling mistake "reqested" -> "requested"

There is a spelling mistake in a dev_warn message. Fix it.
Signed-off-by: default avatarColin Ian King <colin.i.king@gmail.com>
Acked-by: default avatarChen-Yu Tsai <wens@csie.org>
Link: https://lore.kernel.org/r/20240828093447.271503-1-colin.i.king@gmail.comSigned-off-by: default avatarSebastian Reichel <sebastian.reichel@collabora.com>
parent 2ff28e97
...@@ -326,7 +326,7 @@ static int axp20x_usb_power_set_input_current_limit(struct axp20x_usb_power *pow ...@@ -326,7 +326,7 @@ static int axp20x_usb_power_set_input_current_limit(struct axp20x_usb_power *pow
if (power->max_input_cur && (intval > power->max_input_cur)) { if (power->max_input_cur && (intval > power->max_input_cur)) {
dev_warn(power->dev, 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);
intval = power->max_input_cur; intval = power->max_input_cur;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment