mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-03 21:48:15 +00:00 
			
		
		
		
	Use the new symbol to refer to any 'SPL' build, including TPL and VPL Signed-off-by: Simon Glass <sjg@chromium.org>
		
			
				
	
	
		
			21 lines
		
	
	
		
			465 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			465 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0+ */
 | 
						|
/*
 | 
						|
 * (C) Copyright 2018 Linaro Ltd.
 | 
						|
 * Sam Protsenko <semen.protsenko@linaro.org>
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef IMAGE_ANDROID_DT_H
 | 
						|
#define IMAGE_ANDROID_DT_H
 | 
						|
 | 
						|
#include <linux/types.h>
 | 
						|
 | 
						|
bool android_dt_check_header(ulong hdr_addr);
 | 
						|
bool android_dt_get_fdt_by_index(ulong hdr_addr, u32 index, ulong *addr,
 | 
						|
				 u32 *size);
 | 
						|
 | 
						|
#if !defined(CONFIG_XPL_BUILD)
 | 
						|
void android_dt_print_contents(ulong hdr_addr);
 | 
						|
#endif
 | 
						|
 | 
						|
#endif /* IMAGE_ANDROID_DT_H */
 |