mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-31 03:58:17 +00:00 
			
		
		
		
	Signed-off-by: Wolfgang Denk <wd@denx.de> [trini: Fixup common/cmd_io.c] Signed-off-by: Tom Rini <trini@ti.com>
		
			
				
	
	
		
			17 lines
		
	
	
		
			380 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			380 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * (C) Copyright 2009
 | |
|  * Kevin Morfitt, Fearnside Systems Ltd, <kevin.morfitt@fearnside-systems.co.uk>
 | |
|  *
 | |
|  * SPDX-License-Identifier:	GPL-2.0+
 | |
|  */
 | |
| 
 | |
| #ifdef CONFIG_S3C2400
 | |
| 	#include <asm/arch/s3c2400.h>
 | |
| #elif defined CONFIG_S3C2410
 | |
| 	#include <asm/arch/s3c2410.h>
 | |
| #elif defined CONFIG_S3C2440
 | |
| 	#include <asm/arch/s3c2440.h>
 | |
| #else
 | |
| 	#error Please define the s3c24x0 cpu type
 | |
| #endif
 |