TEST=Booted nyan in normal and recovery mode. Created a map, filled it with some chars, then verified they can be read from the pointer returned. BUG=chrome-os-partner:25587 BRANCH=None Signed-off-by: Daisuke Nojiri <dnojiri@chromium.org> Tested-by: Daisuke Nojiri <dnojiri@chromium.org> Original-Change-Id: Id1f1be4f6d2d5734d87bf3452d4806d0fe3fda88 Original-Reviewed-on: https://chromium-review.googlesource.com/188894 Original-Reviewed-by: Julius Werner <jwerner@chromium.org> Original-Commit-Queue: Daisuke Nojiri <dnojiri@chromium.org> Original-Tested-by: Daisuke Nojiri <dnojiri@chromium.org> (cherry picked from commit 7fda3885f51c8d383585a80e99ab3df9c789d872) Signed-off-by: Marc Jones <marc.jones@se-eng.com> Change-Id: I6255d11396c87f40b0ae12ceab0fd152f2478529 Reviewed-on: http://review.coreboot.org/7658 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <pgeorgi@google.com>
		
			
				
	
	
		
			22 lines
		
	
	
		
			482 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			482 B
		
	
	
	
		
			C
		
	
	
	
	
	
| 
 | |
| #include <arch/types.h>
 | |
| 
 | |
| #ifndef __SIZE_TYPE__
 | |
| #define __SIZE_TYPE__ unsigned long
 | |
| #endif
 | |
| typedef __SIZE_TYPE__ size_t;
 | |
| /* There is a GCC macro for a size_t type, but not
 | |
|  * for a ssize_t type. Below construct tricks GCC
 | |
|  * into making __SIZE_TYPE__ signed.
 | |
|  */
 | |
| #define unsigned signed
 | |
| typedef __SIZE_TYPE__ ssize_t;
 | |
| #undef unsigned
 | |
| 
 | |
| #define offsetof(TYPE, MEMBER)	((size_t) &((TYPE *) 0)->MEMBER)
 | |
| 
 | |
| /* Standard units. */
 | |
| #define KiB (1<<10)
 | |
| #define MiB (1<<20)
 | |
| #define GiB (1<<30)
 |