diff mbox series

[next] usb: cdns2: Fix spelling mistake in a trace message "Wakupe" -> "Wakeup"

Message ID 20230615144052.2254528-1-colin.i.king@gmail.com (mailing list archive)
State Accepted
Commit 55f90c3f83c5d26ce6b1a6a01a4f435860376be4
Headers show
Series [next] usb: cdns2: Fix spelling mistake in a trace message "Wakupe" -> "Wakeup" | expand

Commit Message

Colin Ian King June 15, 2023, 2:40 p.m. UTC
There is a spelling mistake in a trace message. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 drivers/usb/gadget/udc/cdns2/cdns2-debug.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/drivers/usb/gadget/udc/cdns2/cdns2-debug.h b/drivers/usb/gadget/udc/cdns2/cdns2-debug.h
index fd22ae949008..be9ae0d28a40 100644
--- a/drivers/usb/gadget/udc/cdns2/cdns2-debug.h
+++ b/drivers/usb/gadget/udc/cdns2/cdns2-debug.h
@@ -36,7 +36,7 @@  static inline const char *cdns2_decode_usb_irq(char *str, size_t size,
 	ret += snprintf(str + ret, size - ret, ", EXT: 0x%02x - ", ext_irq);
 
 	if (ext_irq & EXTIRQ_WAKEUP)
-		ret += snprintf(str + ret, size - ret, "Wakupe ");
+		ret += snprintf(str + ret, size - ret, "Wakeup ");
 	if (ext_irq & EXTIRQ_VBUSFAULT_FALL)
 		ret += snprintf(str + ret, size - ret, "VBUS_FALL ");
 	if (ext_irq & EXTIRQ_VBUSFAULT_RISE)