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

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

parent 2ff28e97
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
	}