mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-04 05:50:17 +00:00 
			
		
		
		
	Now that we have generic routine to calculate relocation address, remove the x86 specific one which is now only used by coreboot. Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
		
			
				
	
	
		
			16 lines
		
	
	
		
			272 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			272 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * (C) Copyright 2011
 | 
						|
 * Graeme Russ, <graeme.russ@gmail.com>
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier:	GPL-2.0+
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef _INIT_HELPERS_H_
 | 
						|
#define _INIT_HELPERS_H_
 | 
						|
 | 
						|
int init_cache_f_r(void);
 | 
						|
int init_bd_struct_r(void);
 | 
						|
int init_func_spi(void);
 | 
						|
 | 
						|
#endif	/* !_INIT_HELPERS_H_ */
 |