Message ID | 20230615144052.2254528-1-colin.i.king@gmail.com |
---|---|
State | New |
Headers | show |
Series | [next] usb: cdns2: Fix spelling mistake in a trace message "Wakupe" -> "Wakeup" | expand |
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)
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(-)