From: Colin Ian King Date: Fri, 12 Oct 2018 22:31:37 +0000 (+0100) Subject: staging: rtl8188eu: fix spelling mistake "EINPROGESS" -> "EINPROGRESS" X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=fde54ecea2be9506fc25f62dd3d9dd6dda0f761f;p=linux.git staging: rtl8188eu: fix spelling mistake "EINPROGESS" -> "EINPROGRESS" Trivial fix to spelling mistake in RT_TRACE message text. Signed-off-by: Colin Ian King Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rtl8188eu/os_dep/usb_ops_linux.c b/drivers/staging/rtl8188eu/os_dep/usb_ops_linux.c index 43f031d644fdb..d6a499692e96e 100644 --- a/drivers/staging/rtl8188eu/os_dep/usb_ops_linux.c +++ b/drivers/staging/rtl8188eu/os_dep/usb_ops_linux.c @@ -606,7 +606,7 @@ static void usb_write_port_complete(struct urb *purb, struct pt_regs *regs) if ((purb->status == -EPIPE) || (purb->status == -EPROTO)) { sreset_set_wifi_error_status(padapter, USB_WRITE_PORT_FAIL); } else if (purb->status == -EINPROGRESS) { - RT_TRACE(_module_hci_ops_os_c_, _drv_err_, ("usb_write_port_complete: EINPROGESS\n")); + RT_TRACE(_module_hci_ops_os_c_, _drv_err_, ("usb_write_port_complete: EINPROGRESS\n")); goto check_completion; } else if (purb->status == -ENOENT) { DBG_88E("%s: -ENOENT\n", __func__);