mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
usb: ci_udc: fix typo in debug message
s/ot/to/ Signed-off-by: Stephen Warren <swarren@nvidia.com>
This commit is contained in:
parent
fb22ae6c7e
commit
83c3750088
1 changed files with 2 additions and 2 deletions
|
@ -471,10 +471,10 @@ static int ci_ep_queue(struct usb_ep *ep,
|
|||
static void flip_ep0_direction(void)
|
||||
{
|
||||
if (ep0_desc.bEndpointAddress == USB_DIR_IN) {
|
||||
DBG("%s: Flipping ep0 ot OUT\n", __func__);
|
||||
DBG("%s: Flipping ep0 to OUT\n", __func__);
|
||||
ep0_desc.bEndpointAddress = 0;
|
||||
} else {
|
||||
DBG("%s: Flipping ep0 ot IN\n", __func__);
|
||||
DBG("%s: Flipping ep0 to IN\n", __func__);
|
||||
ep0_desc.bEndpointAddress = USB_DIR_IN;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue