Your ROOT_URL in app.ini is https://src.whiteboxsystems.nl/ but you are visiting http://src.whiteboxsystems.nl/Whitebox/u-boot/commit/61755c7908be54a8221280cc801e65bc9d91dfad You should set ROOT_URL correctly, otherwise the web may not work correctly.

usb: ehci: Fix aliasing issue in EHCI interrupt code

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 <vpalatin@chromium.org>

Signed-off-by: Simon Glass <sjg@chromium.org>
master
Vincent Palatin 12 years ago committed by Marek Vasut
parent 8f62ca646f
commit 61755c7908
  1. 2
      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;
};
};

Loading…
Cancel
Save