Skip to content

Commit 55f90c3

Browse files
ColinIanKinggregkh
authored andcommitted
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>
1 parent ee400a1 commit 55f90c3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/usb/gadget/udc/cdns2/cdns2-debug.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ static inline const char *cdns2_decode_usb_irq(char *str, size_t size,
3636
ret += snprintf(str + ret, size - ret, ", EXT: 0x%02x - ", ext_irq);
3737

3838
if (ext_irq & EXTIRQ_WAKEUP)
39-
ret += snprintf(str + ret, size - ret, "Wakupe ");
39+
ret += snprintf(str + ret, size - ret, "Wakeup ");
4040
if (ext_irq & EXTIRQ_VBUSFAULT_FALL)
4141
ret += snprintf(str + ret, size - ret, "VBUS_FALL ");
4242
if (ext_irq & EXTIRQ_VBUSFAULT_RISE)

0 commit comments

Comments
 (0)