Home
last modified time | relevance | path

Searched hist:f1273f11433ef4803d5eb88f1ec26986c99094c7 (Results 1 – 1 of 1) sorted by relevance

/rk3399_rockchip-uboot/drivers/usb/host/
H A Dohci-hcd.cf1273f11433ef4803d5eb88f1ec26986c99094c7 Sat Aug 11 21:49:09 UTC 2012 Troy Kisky <troy.kisky@boundarydevices.com> USB: Fix strict aliasing in ohci-hcd

commit 5f6aa03fda2a0a79940765865c1e4266be8a75f8
USB: Fix complaints about strict aliasing in OHCI-HCD

tried to fix this, but gcc4.4 still complains. So, this
patch basically reverts the above and does a simpler fix.

also, the above commit incorrectly changed
/* corresponds to data_buf[4-7] */
datab [1] = 0;
to

/* corresponds to databuf.u8[4-7] */
databuf.u8[1] = 0;

This patch also fixes that.

Signed-off-by: Troy Kisky <troy.kisky@boundarydevices.com>