summaryrefslogtreecommitdiffstats
path: root/drivers/usb
diff options
context:
space:
mode:
authorColin Ian King <colin.i.king@gmail.com>2023-06-15 15:40:52 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2023-06-19 15:34:44 +0200
commit55f90c3f83c5d26ce6b1a6a01a4f435860376be4 (patch)
treea7781f1f010f35dd10d080f61f82e536d9f73e55 /drivers/usb
parentee400a1be11527e1ea58b716b338b9fb6665b8d6 (diff)
downloadlinux-stable-55f90c3f83c5d26ce6b1a6a01a4f435860376be4.tar.gz
linux-stable-55f90c3f83c5d26ce6b1a6a01a4f435860376be4.tar.bz2
linux-stable-55f90c3f83c5d26ce6b1a6a01a4f435860376be4.zip
usb: cdns2: Fix spelling mistake in a trace message "Wakupe" -> "Wakeup"
There is a spelling mistake in a trace message. Fix it. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> Link: https://lore.kernel.org/r/20230615144052.2254528-1-colin.i.king@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb')
-rw-r--r--drivers/usb/gadget/udc/cdns2/cdns2-debug.h2
1 files changed, 1 insertions, 1 deletions
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)