diff options
Diffstat (limited to 'roms/u-boot/arch/sandbox/include/asm/cache.h')
-rw-r--r-- | roms/u-boot/arch/sandbox/include/asm/cache.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/roms/u-boot/arch/sandbox/include/asm/cache.h b/roms/u-boot/arch/sandbox/include/asm/cache.h new file mode 100644 index 00000000..d28c385e --- /dev/null +++ b/roms/u-boot/arch/sandbox/include/asm/cache.h @@ -0,0 +1,18 @@ +/* + * Copyright (c) 2011 The Chromium OS Authors. + * + * SPDX-License-Identifier: GPL-2.0+ + */ + +#ifndef __SANDBOX_CACHE_H__ +#define __SANDBOX_CACHE_H__ + +/* + * For native compilation of the sandbox we should still align + * the contents of stack buffers to something reasonable. The + * GCC macro __BIGGEST_ALIGNMENT__ is defined to be the maximum + * required alignment for any basic type. This seems reasonable. + */ +#define ARCH_DMA_MINALIGN __BIGGEST_ALIGNMENT__ + +#endif /* __SANDBOX_CACHE_H__ */ |