mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-19 05:31:32 +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 = ehci_readl(&hcor->or_usbcmd);
|
||||||
tmp &= ~CMD_RUN;
|
tmp &= ~CMD_RUN;
|
||||||
ehci_writel(tmp, &hcor->or_usbcmd);
|
ehci_writel(&hcor->or_usbcmd, tmp);
|
||||||
|
|
||||||
/* Disable the PHY */
|
/* Disable the PHY */
|
||||||
tmp = USBPHY_PWD_RXPWDRX | USBPHY_PWD_RXPWDDIFF |
|
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;
|
int num_trbs = 0;
|
||||||
struct xhci_generic_trb *start_trb;
|
struct xhci_generic_trb *start_trb;
|
||||||
bool first_trb = 0;
|
bool first_trb = false;
|
||||||
int start_cycle;
|
int start_cycle;
|
||||||
u32 field = 0;
|
u32 field = 0;
|
||||||
u32 length_field = 0;
|
u32 length_field = 0;
|
||||||
|
|
Loading…
Add table
Reference in a new issue