mirror of https://gitee.com/openkylin/linux.git
USB: renesas_usbhs: fix spelling mistake "doens't" -> "doesn't"
There is a spelling mistake in a dev_err message. Fix it. Signed-off-by: Colin Ian King <colin.king@canonical.com> Acked-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
36ed8ebc7a
commit
d651b44244
|
@ -340,7 +340,7 @@ static void usbhsh_pipe_detach(struct usbhsh_hpriv *hpriv,
|
||||||
pipe = usbhsh_uep_to_pipe(uep);
|
pipe = usbhsh_uep_to_pipe(uep);
|
||||||
|
|
||||||
if (unlikely(!pipe)) {
|
if (unlikely(!pipe)) {
|
||||||
dev_err(dev, "uep doens't have pipe\n");
|
dev_err(dev, "uep doesn't have pipe\n");
|
||||||
} else if (1 == uep->counter--) { /* last user */
|
} else if (1 == uep->counter--) { /* last user */
|
||||||
struct usb_host_endpoint *ep = usbhsh_uep_to_ep(uep);
|
struct usb_host_endpoint *ep = usbhsh_uep_to_ep(uep);
|
||||||
struct usbhsh_device *udev = usbhsh_uep_to_udev(uep);
|
struct usbhsh_device *udev = usbhsh_uep_to_udev(uep);
|
||||||
|
|
Loading…
Reference in New Issue