This simplifies the scripted execution of the next patch. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
		
			
				
	
	
		
			18 lines
		
	
	
		
			337 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			337 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef E500_CCSR_H
 | 
						|
#define E500_CCSR_H
 | 
						|
 | 
						|
#include "hw/sysbus.h"
 | 
						|
 | 
						|
typedef struct PPCE500CCSRState {
 | 
						|
    /*< private >*/
 | 
						|
    SysBusDevice parent;
 | 
						|
    /*< public >*/
 | 
						|
 | 
						|
    MemoryRegion ccsr_space;
 | 
						|
} PPCE500CCSRState;
 | 
						|
 | 
						|
#define TYPE_CCSR "e500-ccsr"
 | 
						|
#define CCSR(obj) OBJECT_CHECK(PPCE500CCSRState, (obj), TYPE_CCSR)
 | 
						|
 | 
						|
#endif /* E500_CCSR_H */
 |