Merge git://git.denx.de/u-boot-usb

This commit is contained in:
Tom Rini 2018-01-27 14:48:52 -05:00
commit f95a4b3a55
2 changed files with 2 additions and 2 deletions

View file

@ -156,7 +156,7 @@ int ehci_hcd_stop(int index)
tmp = ehci_readl(&hcor->or_usbcmd);
tmp &= ~CMD_RUN;
ehci_writel(tmp, &hcor->or_usbcmd);
ehci_writel(&hcor->or_usbcmd, tmp);
/* Disable the PHY */
tmp = USBPHY_PWD_RXPWDRX | USBPHY_PWD_RXPWDDIFF |

View file

@ -557,7 +557,7 @@ int xhci_bulk_tx(struct usb_device *udev, unsigned long pipe,
{
int num_trbs = 0;
struct xhci_generic_trb *start_trb;
bool first_trb = 0;
bool first_trb = false;
int start_cycle;
u32 field = 0;
u32 length_field = 0;