summaryrefslogtreecommitdiff
path: root/firmware/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers')
-rw-r--r--firmware/drivers/fat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/drivers/fat.c b/firmware/drivers/fat.c
index f055f4b170..63f4151792 100644
--- a/firmware/drivers/fat.c
+++ b/firmware/drivers/fat.c
@@ -211,7 +211,7 @@ struct fat_cache_entry
211#endif 211#endif
212}; 212};
213 213
214static char fat_cache_sectors[FAT_CACHE_SIZE][SECTOR_SIZE]; 214static char fat_cache_sectors[FAT_CACHE_SIZE][SECTOR_SIZE] CACHEALIGN_ATTR;
215static struct fat_cache_entry fat_cache[FAT_CACHE_SIZE]; 215static struct fat_cache_entry fat_cache[FAT_CACHE_SIZE];
216static struct mutex cache_mutex SHAREDBSS_ATTR; 216static struct mutex cache_mutex SHAREDBSS_ATTR;
217 217