mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
Merge git://git.denx.de/u-boot-usb
This commit is contained in:
commit
f95a4b3a55
2 changed files with 2 additions and 2 deletions
|
@ -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 |
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue