]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
usb: align usb_endpoint_descriptor to 16-bit boundary
authorStefan Kristiansson <stefan.kristiansson@saunalahti.fi>
Thu, 20 Oct 2011 19:25:37 +0000 (22:25 +0300)
committerRemy Bohmer <linux@bohmer.net>
Sun, 11 Dec 2011 13:42:10 +0000 (14:42 +0100)
commit9792987721c7980453fe6447c3fa6593b44f8458
treeebe24444679c835ec30deadc9a9067c146e3d0a6
parent241d9a61b3c073aec7632af1333631ab61455cc4
usb: align usb_endpoint_descriptor to 16-bit boundary

The usb_endpoint_descriptor struct is 7 bytes large and is
defined as an array (ep_desc[USB_MAXENDPOINTS])
in the usb_interface struct in include/usb.h

This fact will result in that every odd index in that
array will start at an uneven address, this in
turn makes accesses to u16 wMaxPacketSize unaligned.
Such accesses are illegal on the OpenRISC architecture
(as well as other architectures) and will render a bus error.

Setting the aligned(2) attribute on usb_endpoint_descriptor
will force wMaxPacketSize to a 16-bit boundary.

Signed-off-by: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
include/usbdescriptors.h