aboutsummaryrefslogtreecommitdiff
path: root/src/commonlib/storage/bouncebuf.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/commonlib/storage/bouncebuf.h')
-rw-r--r--src/commonlib/storage/bouncebuf.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commonlib/storage/bouncebuf.h b/src/commonlib/storage/bouncebuf.h
index 27d92e826b..0d81be1faa 100644
--- a/src/commonlib/storage/bouncebuf.h
+++ b/src/commonlib/storage/bouncebuf.h
@@ -88,7 +88,7 @@ int bounce_buffer_stop(struct bounce_buffer *state);
#define ALLOC_CACHE_ALIGN_BUFFER(type, name, size) \
char __##name[ROUND(size * sizeof(type), DMA_MINALIGN) + \
DMA_MINALIGN - 1]; \
- type *name = (type *) ALIGN((uintptr_t)__##name, DMA_MINALIGN)
+ type *name = (type *) ALIGN_UP((uintptr_t)__##name, DMA_MINALIGN)
#ifndef ARCH_DMA_MINALIGN
#define ARCH_DMA_MINALIGN (DMA_MINALIGN)
#endif