mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 04:06:46 +00:00 
			
		
		
		
	 64552b6be4
			
		
	
	
		64552b6be4
		
	
	
	
	
		
			
			In my "build everything" tree, changing hw/irq.h triggers a recompile of some 5400 out of 6600 objects (not counting tests and objects that don't depend on qemu/osdep.h). hw/hw.h supposedly includes it for convenience. Several other headers include it just to get qemu_irq and.or qemu_irq_handler. Move the qemu_irq and qemu_irq_handler typedefs from hw/irq.h to qemu/typedefs.h, and then include hw/irq.h only where it's still needed. Touching it now recompiles only some 500 objects. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-Id: <20190812052359.30071-13-armbru@redhat.com>
		
			
				
	
	
		
			15 lines
		
	
	
		
			393 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			393 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef HW_VT82C686_H
 | |
| #define HW_VT82C686_H
 | |
| 
 | |
| 
 | |
| #define TYPE_VT82C686B_SUPERIO "vt82c686b-superio"
 | |
| 
 | |
| /* vt82c686.c */
 | |
| ISABus *vt82c686b_isa_init(PCIBus * bus, int devfn);
 | |
| void vt82c686b_ac97_init(PCIBus *bus, int devfn);
 | |
| void vt82c686b_mc97_init(PCIBus *bus, int devfn);
 | |
| I2CBus *vt82c686b_pm_init(PCIBus *bus, int devfn, uint32_t smb_io_base,
 | |
|                           qemu_irq sci_irq);
 | |
| 
 | |
| #endif
 |