mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 12:07:31 +00:00 
			
		
		
		
	 24a6e0633a
			
		
	
	
		24a6e0633a
		
	
	
	
	
		
			
			Clean up includes so that osdep.h is included first and headers which it implies are not included manually. This commit was created with scripts/clean-includes. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Eric Blake <eblake@redhat.com> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
		
			
				
	
	
		
			22 lines
		
	
	
		
			458 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			458 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* Define hwaddr if it exists.  */
 | |
| 
 | |
| #ifndef HWADDR_H
 | |
| #define HWADDR_H
 | |
| 
 | |
| 
 | |
| #define HWADDR_BITS 64
 | |
| /* hwaddr is the type of a physical address (its size can
 | |
|    be different from 'target_ulong').  */
 | |
| 
 | |
| typedef uint64_t hwaddr;
 | |
| #define HWADDR_MAX UINT64_MAX
 | |
| #define TARGET_FMT_plx "%016" PRIx64
 | |
| #define HWADDR_PRId PRId64
 | |
| #define HWADDR_PRIi PRIi64
 | |
| #define HWADDR_PRIo PRIo64
 | |
| #define HWADDR_PRIu PRIu64
 | |
| #define HWADDR_PRIx PRIx64
 | |
| #define HWADDR_PRIX PRIX64
 | |
| 
 | |
| #endif
 |