]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
power: supply: axp20x_usb_power: Fix spelling mistake "reqested" -> "requested"
authorColin Ian King <colin.i.king@gmail.com>
Wed, 28 Aug 2024 09:34:47 +0000 (10:34 +0100)
committerSebastian Reichel <sebastian.reichel@collabora.com>
Tue, 3 Sep 2024 21:43:18 +0000 (23:43 +0200)
There is a spelling mistake in a dev_warn message. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Acked-by: Chen-Yu Tsai <wens@csie.org>
Link: https://lore.kernel.org/r/20240828093447.271503-1-colin.i.king@gmail.com
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
drivers/power/supply/axp20x_usb_power.c

index 7b1bf6766ff75dff63d58f84bb0d7537b921fd29..9f6fb448e3530ce7cedd82049bb31ddee4a6a418 100644 (file)
@@ -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)) {
                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;
        }