diff options
| author | Cástor Muñoz <cmvidal@gmail.com> | 2016-02-14 11:47:09 +0100 |
|---|---|---|
| committer | Cástor Muñoz <cmvidal@gmail.com> | 2016-02-14 15:10:55 +0100 |
| commit | 31d9084a8ce925c513abe37f0a7e9522925f7791 (patch) | |
| tree | e7c4086322cadf83878d721a0503c5e6876b07b7 | |
| parent | 0b6647f2e9e5d21e80736eab7af33acecba28f38 (diff) | |
| download | rockbox-31d9084a8ce925c513abe37f0a7e9522925f7791.zip rockbox-31d9084a8ce925c513abe37f0a7e9522925f7791.tar.gz rockbox-31d9084a8ce925c513abe37f0a7e9522925f7791.tar.bz2 rockbox-31d9084a8ce925c513abe37f0a7e9522925f7791.tar.xz | |
iPod Classic: fix USB_DEVBSS_ATTR alignment
After previous commit 0b6647f2e9e5d21e80736eab7af33acecba28f38
this alignment should not be needed, but not sure at all, so it
is aligned to cache line length for safety.
Change-Id: I5b2b9a30c913d2a609acc1bdf30bdec6811a2551
| -rw-r--r-- | firmware/export/config/ipod6g.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/export/config/ipod6g.h b/firmware/export/config/ipod6g.h index 228867e..84a13d8 100644 --- a/firmware/export/config/ipod6g.h +++ b/firmware/export/config/ipod6g.h @@ -247,7 +247,7 @@ #define USB_VENDOR_ID 0x05AC #define USB_PRODUCT_ID 0x1261 #define USB_NUM_ENDPOINTS 6 -#define USB_DEVBSS_ATTR __attribute__((aligned(16))) +#define USB_DEVBSS_ATTR __attribute__((aligned(32))) #define HAVE_SERIAL /* Disable iAP when LOGF_SERIAL is enabled to avoid conflicts */ |