summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCástor Muñoz <cmvidal@gmail.com>2016-02-14 11:47:09 +0100
committerCástor Muñoz <cmvidal@gmail.com>2016-02-14 15:10:55 +0100
commit31d9084a8ce925c513abe37f0a7e9522925f7791 (patch)
treee7c4086322cadf83878d721a0503c5e6876b07b7
parent0b6647f2e9e5d21e80736eab7af33acecba28f38 (diff)
downloadrockbox-31d9084a8ce925c513abe37f0a7e9522925f7791.tar.gz
rockbox-31d9084a8ce925c513abe37f0a7e9522925f7791.zip
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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/export/config/ipod6g.h b/firmware/export/config/ipod6g.h
index 228867ed82..84a13d8830 100644
--- a/firmware/export/config/ipod6g.h
+++ b/firmware/export/config/ipod6g.h
@@ -247,7 +247,7 @@
247#define USB_VENDOR_ID 0x05AC 247#define USB_VENDOR_ID 0x05AC
248#define USB_PRODUCT_ID 0x1261 248#define USB_PRODUCT_ID 0x1261
249#define USB_NUM_ENDPOINTS 6 249#define USB_NUM_ENDPOINTS 6
250#define USB_DEVBSS_ATTR __attribute__((aligned(16))) 250#define USB_DEVBSS_ATTR __attribute__((aligned(32)))
251 251
252#define HAVE_SERIAL 252#define HAVE_SERIAL
253/* Disable iAP when LOGF_SERIAL is enabled to avoid conflicts */ 253/* Disable iAP when LOGF_SERIAL is enabled to avoid conflicts */