diff options
author | Tom Rini <trini@ti.com> | 2013-03-18 15:33:47 -0400 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-03-18 15:33:47 -0400 |
commit | 3c47f2f4871c345c20b9d986b11fec550ef6cc9f (patch) | |
tree | 267c6eedacaa02cc8c7096f67bedb9d17fe3e21d /drivers/usb/host/ehci.h | |
parent | 0ce033d2582129243aca10d3072a221386bbba44 (diff) | |
parent | ae003d057077d792c1f2131753a7596c94e0bba4 (diff) |
Merge branch 'master' of git://git.denx.de/u-boot-usb
Diffstat (limited to 'drivers/usb/host/ehci.h')
-rw-r--r-- | drivers/usb/host/ehci.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/usb/host/ehci.h b/drivers/usb/host/ehci.h index 1e3cd793b60..d090f0a53e8 100644 --- a/drivers/usb/host/ehci.h +++ b/drivers/usb/host/ehci.h @@ -69,6 +69,7 @@ struct ehci_hcor { #define CMD_RUN (1 << 0) /* start/stop HC */ uint32_t or_usbsts; #define STS_ASS (1 << 15) +#define STS_PSS (1 << 14) #define STS_HALT (1 << 12) uint32_t or_usbintr; #define INTR_UE (1 << 0) /* USB interrupt enable */ @@ -245,7 +246,10 @@ struct QH { * Add dummy fill value to make the size of this struct * aligned to 32 bytes */ - uint8_t fill[16]; + union { + uint32_t fill[4]; + void *buffer; + }; }; /* Low level init functions */ |