mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-04 05:50:17 +00:00 
			
		
		
		
	Update my and DPs email address to match current setup. Signed-off-by: Michal Simek <michal.simek@amd.com> Link: https://lore.kernel.org/r/aba5b19b9c5a95608829e86ad5cc4671c940f1bb.1688992543.git.michal.simek@amd.com
		
			
				
	
	
		
			22 lines
		
	
	
		
			420 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			420 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0 */
 | 
						|
/*
 | 
						|
 * (C) Copyright 2020 Xilinx, Inc.
 | 
						|
 * Michal Simek <michal.simek@amd.com>
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef _BOARD_XILINX_COMMON_BOARD_H
 | 
						|
#define _BOARD_XILINX_COMMON_BOARD_H
 | 
						|
 | 
						|
int board_late_init_xilinx(void);
 | 
						|
 | 
						|
int xilinx_read_eeprom(void);
 | 
						|
 | 
						|
char *board_name_decode(void);
 | 
						|
 | 
						|
bool board_detection(void);
 | 
						|
 | 
						|
char *soc_name_decode(void);
 | 
						|
 | 
						|
bool soc_detection(void);
 | 
						|
#endif /* BOARD_XILINX_COMMON_BOARD_H */
 |