Commit 55f90c3f authored by Colin Ian King's avatar Colin Ian King Committed by Greg Kroah-Hartman

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: default avatarColin Ian King <colin.i.king@gmail.com>
Link: https://lore.kernel.org/r/20230615144052.2254528-1-colin.i.king@gmail.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ee400a1b
...@@ -36,7 +36,7 @@ static inline const char *cdns2_decode_usb_irq(char *str, size_t size, ...@@ -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); ret += snprintf(str + ret, size - ret, ", EXT: 0x%02x - ", ext_irq);
if (ext_irq & EXTIRQ_WAKEUP) 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) if (ext_irq & EXTIRQ_VBUSFAULT_FALL)
ret += snprintf(str + ret, size - ret, "VBUS_FALL "); ret += snprintf(str + ret, size - ret, "VBUS_FALL ");
if (ext_irq & EXTIRQ_VBUSFAULT_RISE) if (ext_irq & EXTIRQ_VBUSFAULT_RISE)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment