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

Configure Feed

Select the types of activity you want to include in your feed.

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

authored by

Andrew Kreimer and committed by
Sebastian Reichel
252e6671 a8936109

+1 -1
+1 -1
drivers/power/supply/axp20x_usb_power.c
··· 492 492 493 493 if (power->max_input_cur && (intval > power->max_input_cur)) { 494 494 dev_warn(power->dev, 495 - "reqested current %d clamped to max current %d\n", 495 + "requested current %d clamped to max current %d\n", 496 496 intval, power->max_input_cur); 497 497 intval = power->max_input_cur; 498 498 }