mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-04 05:50:17 +00:00 
			
		
		
		
	Try to maintain some consistency between these variables by using _plat as a suffix for them. Signed-off-by: Simon Glass <sjg@chromium.org>
		
			
				
	
	
		
			17 lines
		
	
	
		
			240 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			240 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0+ */
 | 
						|
/*
 | 
						|
 * Copyright 2019 NXP
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef __fsl_espi_h
 | 
						|
#define __fsl_espi_h
 | 
						|
 | 
						|
struct fsl_espi_plat {
 | 
						|
	uint flags;
 | 
						|
	uint speed_hz;
 | 
						|
	uint num_chipselect;
 | 
						|
	fdt_addr_t regs_addr;
 | 
						|
};
 | 
						|
 | 
						|
#endif /* __fsl_espi_h */
 |