+Julius Hi Marek,
On Thu, Dec 13, 2012 at 6:21 PM, Simon Glass <[email protected]> wrote: > From: Vincent Palatin <[email protected]> > > The interrupt endpoint handling code stores the buffer pointer in the QH > padding field. We need to make it the size of a pointer to avoid strict > aliasing issue with the compiler. > > Signed-off-by: Vincent Palatin <[email protected]> > > Signed-off-by: Simon Glass <[email protected]> I think this patch and a few others are still in the queue. Does that sound right to you? 9c9f379 x86: Enable USB features for coreboot ecefc3fc usb: Add multiple controllers support for EHCI PCI 4950984 usb: usbeth: smsc95xx: remove EEPROM loaded check 606a9e0 usb: ehci: Fix aliasing issue in EHCI interrupt code d2f9f89 usb: ehci: Support interrupt transfers via periodic list We will be sending a v3 with a few fixes. Regards, Simon > --- > Changes in v2: None > > drivers/usb/host/ehci.h | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/drivers/usb/host/ehci.h b/drivers/usb/host/ehci.h > index 8bc2ba1..5370eb0 100644 > --- a/drivers/usb/host/ehci.h > +++ b/drivers/usb/host/ehci.h > @@ -247,7 +247,7 @@ struct QH { > * aligned to 32 bytes > */ > union { > - uint8_t fill[16]; > + uint32_t fill[4]; > void *buffer; > }; > }; > -- > 1.7.7.3 > _______________________________________________ U-Boot mailing list [email protected] http://lists.denx.de/mailman/listinfo/u-boot

