mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-03 21:48:15 +00:00 
			
		
		
		
	- None of the callers perform error checking and based on the non-empty versions of this function, there's no checking to be done, so make this a void. - Add a default weak version of the function. - Remove the empty versions of exynos_init now that we have a weak version. Signed-off-by: Tom Rini <trini@konsulko.com>
		
			
				
	
	
		
			29 lines
		
	
	
		
			490 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			490 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0+ */
 | 
						|
/*
 | 
						|
 * (C) Copyright 2013 Samsung Electronics
 | 
						|
 * Rajeshwari Shinde <rajeshwari.s@samsung.com>
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef _EXYNOS_BOARD_H
 | 
						|
#define _EXYNOS_BOARD_H
 | 
						|
 | 
						|
/*
 | 
						|
 * Exynos baord specific changes for
 | 
						|
 * board_init
 | 
						|
 */
 | 
						|
void exynos_init(void);
 | 
						|
 | 
						|
/*
 | 
						|
 * Exynos board specific changes for
 | 
						|
 * board_early_init_f
 | 
						|
 */
 | 
						|
int exynos_early_init_f(void);
 | 
						|
 | 
						|
/*
 | 
						|
 * Exynos board specific changes for
 | 
						|
 * board_power_init
 | 
						|
 */
 | 
						|
int exynos_power_init(void);
 | 
						|
 | 
						|
#endif	/* EXYNOS_BOARD_H */
 |