mirror of
				https://source.denx.de/u-boot/u-boot.git
				synced 2025-10-31 08:21:36 +01:00 
			
		
		
		
	Signed-off-by: Wolfgang Denk <wd@denx.de> [trini: Fixup common/cmd_io.c] Signed-off-by: Tom Rini <trini@ti.com>
		
			
				
	
	
		
			19 lines
		
	
	
		
			497 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			497 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * 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__ */
 |