20 lines
		
	
	
		
			310 B
		
	
	
	
		
			C
		
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			310 B
		
	
	
	
		
			C
		
	
	
	
| // SPDX-License-Identifier: GPL-2.0+
 | |
| /*
 | |
|  * (C) Copyright 2003
 | |
|  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
 | |
|  */
 | |
| 
 | |
| #include <init.h>
 | |
| #include <asm/global_data.h>
 | |
| 
 | |
| DECLARE_GLOBAL_DATA_PTR;
 | |
| 
 | |
| void trap_init(unsigned long reloc_addr);
 | |
| 
 | |
| int arch_initr_trap(void)
 | |
| {
 | |
| 	trap_init(gd->relocaddr);
 | |
| 
 | |
| 	return 0;
 | |
| }
 |