Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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: 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>

authored by

Colin Ian King and committed by
Sebastian Reichel
57dfd445 2ff28e97

+1 -1
+1 -1
drivers/power/supply/axp20x_usb_power.c
··· 326 326 327 327 if (power->max_input_cur && (intval > power->max_input_cur)) { 328 328 dev_warn(power->dev, 329 - "reqested current %d clamped to max current %d\n", 329 + "requested current %d clamped to max current %d\n", 330 330 intval, power->max_input_cur); 331 331 intval = power->max_input_cur; 332 332 }