mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-04 05:50:17 +00:00 
			
		
		
		
	85xx, 86xx PowerPC folders have code variables with CamelCase naming conventions. because of this code checkpatch script generates "WARNING: Avoid CamelCase". Convert variables name to normal naming convention and modify board, driver files with updated the new structure. Signed-off-by: Prabhakar Kushwaha <prabhakar@freescale.com> Acked-by: York Sun <yorksun@freescale.com>
		
			
				
	
	
		
			34 lines
		
	
	
		
			626 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			626 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * Copyright 2003 Motorola,Inc.
 | 
						|
 * Xianghua Xiao(x.xiao@motorola.com)
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef	__E500_H__
 | 
						|
#define __E500_H__
 | 
						|
 | 
						|
#ifndef __ASSEMBLY__
 | 
						|
 | 
						|
typedef struct
 | 
						|
{
 | 
						|
	unsigned long freq_processor[CONFIG_MAX_CPUS];
 | 
						|
	unsigned long freq_systembus;
 | 
						|
	unsigned long freq_ddrbus;
 | 
						|
	unsigned long freq_localbus;
 | 
						|
	unsigned long freq_qe;
 | 
						|
#ifdef CONFIG_SYS_DPAA_FMAN
 | 
						|
	unsigned long freq_fman[CONFIG_SYS_NUM_FMAN];
 | 
						|
#endif
 | 
						|
#ifdef CONFIG_SYS_DPAA_QBMAN
 | 
						|
	unsigned long freq_qman;
 | 
						|
#endif
 | 
						|
#ifdef CONFIG_SYS_DPAA_PME
 | 
						|
	unsigned long freq_pme;
 | 
						|
#endif
 | 
						|
} MPC85xx_SYS_INFO;
 | 
						|
 | 
						|
#endif  /* _ASMLANGUAGE */
 | 
						|
 | 
						|
#define RESET_VECTOR	0xfffffffc
 | 
						|
 | 
						|
#endif	/* __E500_H__ */
 |