]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
power: supply: axp20x_usb_power: Fix typo in dev_warn message
authorAndrew Kreimer <algonell@gmail.com>
Thu, 6 Feb 2025 08:33:47 +0000 (10:33 +0200)
committerSebastian Reichel <sebastian.reichel@collabora.com>
Sat, 15 Feb 2025 03:13:43 +0000 (04:13 +0100)
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>
drivers/power/supply/axp20x_usb_power.c

index 9722912268fe8e33fa102f8998a96d7d4b041d2a..1c30851054ae5fc24729dcf796b027786d342832 100644 (file)
@@ -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;
        }