mirror of
				https://xff.cz/git/u-boot/
				synced 2025-10-31 02:15:45 +01:00 
			
		
		
		
	At present this is only used on ARM and sandbox, but it is just as applicable to other architectures. Move the function prototype into the generic SPL header. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Tom Rini <trini@konsulko.com>
		
			
				
	
	
		
			16 lines
		
	
	
		
			195 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			195 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2016 Google, Inc
 | |
|  * SPDX-License-Identifier:	GPL-2.0+
 | |
|  */
 | |
| 
 | |
| #ifndef __asm_spl_h
 | |
| #define __asm_spl_h
 | |
| 
 | |
| #define CONFIG_SPL_BOARD_LOAD_IMAGE
 | |
| 
 | |
| enum {
 | |
| 	BOOT_DEVICE_BOARD,
 | |
| };
 | |
| 
 | |
| #endif
 |