diff mbox series

usb: renesas_usbhs: Fix spelling mistake "faile" -> "failed"

Message ID 20210826122658.13914-1-colin.king@canonical.com
State New
Headers show
Series usb: renesas_usbhs: Fix spelling mistake "faile" -> "failed" | expand

Commit Message

Colin King Aug. 26, 2021, 12:26 p.m. UTC
From: Colin Ian King <colin.king@canonical.com>

There is a spelling mistake in a dev_err error message. Fix it.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/usb/renesas_usbhs/fifo.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Yoshihiro Shimoda Aug. 27, 2021, 12:44 a.m. UTC | #1
Hi Colin,

> From: Colin King, Sent: Thursday, August 26, 2021 9:27 PM

> 

> From: Colin Ian King <colin.king@canonical.com>

> 

> There is a spelling mistake in a dev_err error message. Fix it.

> 

> Signed-off-by: Colin Ian King <colin.king@canonical.com>


Thank you for the patch!

Reviewed-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>


Best regards,
Yoshihiro Shimoda
diff mbox series

Patch

diff --git a/drivers/usb/renesas_usbhs/fifo.c b/drivers/usb/renesas_usbhs/fifo.c
index a3c2b01ccf7b..10607e273879 100644
--- a/drivers/usb/renesas_usbhs/fifo.c
+++ b/drivers/usb/renesas_usbhs/fifo.c
@@ -366,7 +366,7 @@  static int usbhs_dcp_dir_switch_to_write(struct usbhs_pkt *pkt, int *is_done)
 
 	ret = usbhsf_fifo_select(pipe, fifo, 1);
 	if (ret < 0) {
-		dev_err(dev, "%s() faile\n", __func__);
+		dev_err(dev, "%s() failed\n", __func__);
 		return ret;
 	}