mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 12:07:31 +00:00 
			
		
		
		
	 8a824e4d74
			
		
	
	
		8a824e4d74
		
	
	
	
	
		
			
			All the functions in hw/audio/audio.h are called "soundhw_*()" and live in hw/audio/audiohw.c. Rename the header file for consistency. Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Reviewed-by: David Gibson <david@gibson.dropbear.id.au> Reviewed-by: Hervé Poussineau <hpoussin@reactos.org> Message-id: 20170508205735.23444-4-ehabkost@redhat.com Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
		
			
				
	
	
		
			14 lines
		
	
	
		
			355 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			355 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef HW_AUDIO_H
 | |
| #define HW_AUDIO_H
 | |
| 
 | |
| void isa_register_soundhw(const char *name, const char *descr,
 | |
|                           int (*init_isa)(ISABus *bus));
 | |
| 
 | |
| void pci_register_soundhw(const char *name, const char *descr,
 | |
|                           int (*init_pci)(PCIBus *bus));
 | |
| 
 | |
| void soundhw_init(void);
 | |
| void select_soundhw(const char *optarg);
 | |
| 
 | |
| #endif
 |