summaryrefslogtreecommitdiff
path: root/firmware/target/arm/as3525/sd-as3525.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/as3525/sd-as3525.c')
-rw-r--r--firmware/target/arm/as3525/sd-as3525.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/target/arm/as3525/sd-as3525.c b/firmware/target/arm/as3525/sd-as3525.c
index 57ad16bcb2..81dc637617 100644
--- a/firmware/target/arm/as3525/sd-as3525.c
+++ b/firmware/target/arm/as3525/sd-as3525.c
@@ -138,7 +138,7 @@ static volatile unsigned int transfer_error[NUM_VOLUMES];
138 138
139#define UNALIGNED_NUM_SECTORS 10 139#define UNALIGNED_NUM_SECTORS 10
140static unsigned char aligned_buffer[UNALIGNED_NUM_SECTORS* SD_BLOCK_SIZE] __attribute__((aligned(32))); /* align on cache line size */ 140static unsigned char aligned_buffer[UNALIGNED_NUM_SECTORS* SD_BLOCK_SIZE] __attribute__((aligned(32))); /* align on cache line size */
141static unsigned char *uncached_buffer = UNCACHED_ADDR(&aligned_buffer[0]); 141static unsigned char *uncached_buffer = AS3525_UNCACHED_ADDR(&aligned_buffer[0]);
142 142
143 143
144static inline void mci_delay(void) { udelay(1000) ; } 144static inline void mci_delay(void) { udelay(1000) ; }