blob: d28c385eb5c06c4fd62ca2c9b38d9c208397e27e [file] [log] [blame]
Anton staafcceea662011-10-25 10:48:03 +00001/*
2 * Copyright (c) 2011 The Chromium OS Authors.
Anton staafcceea662011-10-25 10:48:03 +00003 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
Anton staafcceea662011-10-25 10:48:03 +00005 */
6
7#ifndef __SANDBOX_CACHE_H__
8#define __SANDBOX_CACHE_H__
9
10/*
11 * For native compilation of the sandbox we should still align
12 * the contents of stack buffers to something reasonable. The
13 * GCC macro __BIGGEST_ALIGNMENT__ is defined to be the maximum
14 * required alignment for any basic type. This seems reasonable.
15 */
16#define ARCH_DMA_MINALIGN __BIGGEST_ALIGNMENT__
17
18#endif /* __SANDBOX_CACHE_H__ */