summaryrefslogtreecommitdiff
path: root/firmware/export/system.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export/system.h')
-rw-r--r--firmware/export/system.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/export/system.h b/firmware/export/system.h
index fee188802b..7dd01b5c93 100644
--- a/firmware/export/system.h
+++ b/firmware/export/system.h
@@ -315,7 +315,7 @@ static inline void cpucache_flush(void)
315/* Pad a size so the buffer can be aligned later */ 315/* Pad a size so the buffer can be aligned later */
316#define CACHE_PAD(x) ((x) + CACHEALIGN_SIZE - 1) 316#define CACHE_PAD(x) ((x) + CACHEALIGN_SIZE - 1)
317/* Number of bytes in the last cacheline assuming buffer of size x is aligned */ 317/* Number of bytes in the last cacheline assuming buffer of size x is aligned */
318#define CACHE_OVERLAP(x) (x & (CACHEALIGN_SIZE - 1)) 318#define CACHE_OVERLAP(x) ((x) & (CACHEALIGN_SIZE - 1))
319 319
320#ifdef NEEDS_STORAGE_ALIGN 320#ifdef NEEDS_STORAGE_ALIGN
321#define STORAGE_ALIGN_DOWN(x) CACHEALIGN_DOWN(x) 321#define STORAGE_ALIGN_DOWN(x) CACHEALIGN_DOWN(x)