[U-Boot] [PATCH 4/4] USB:gadget:designware Fix memory nonalignment issue
Mike Frysinger
vapier at gentoo.org
Tue Mar 6 17:09:02 CET 2012
On Thursday 16 February 2012 07:03:38 Amit Virdi wrote:
> --- a/drivers/usb/gadget/designware_udc.c
> +++ b/drivers/usb/gadget/designware_udc.c
>
> + /* copy back tmp buffer to bufp if bufp is not word aligned */
> + if ((int)bufp & 0x3) {
> + bytp = (u8 *)&tmp[0];
> + for (i = 0; i < len; i++)
> + bufp[i] = bytp[i];
> + }
memcpy(bufp, tmp, len) ?
-mike
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: This is a digitally signed message part.
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20120306/ee72f671/attachment.pgp>
More information about the U-Boot
mailing list