USB: fix ehci alignment error
The Kirkwood gave an unaligned memory access error on line 742 of drivers/usb/host/echi-hcd.c: "ehci->last_periodic_enable = ktime_get_real();" Signed-off-by: Harro Haan <hrhaan@gmail.com> Cc: stable <stable@kernel.org> Acked-by: Alan Stern <stern@rowland.harvard.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
74bdf22b5c
commit
276532ba96
1 changed files with 1 additions and 1 deletions
|
@ -178,7 +178,7 @@ struct usb_hcd {
|
||||||
* this structure.
|
* this structure.
|
||||||
*/
|
*/
|
||||||
unsigned long hcd_priv[0]
|
unsigned long hcd_priv[0]
|
||||||
__attribute__ ((aligned(sizeof(unsigned long))));
|
__attribute__ ((aligned(sizeof(s64))));
|
||||||
};
|
};
|
||||||
|
|
||||||
/* 2.4 does this a bit differently ... */
|
/* 2.4 does this a bit differently ... */
|
||||||
|
|
Loading…
Reference in a new issue