mirror of
				https://git.proxmox.com/git/qemu
				synced 2025-10-31 20:36:04 +00:00 
			
		
		
		
	 a88b362c6f
			
		
	
	
		a88b362c6f
		
	
	
	
	
		
			
			Currently some places use pointer-to-void even though they mean pointer-to-FWCfgState. Clean them up. Signed-off-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Anthony Liguori <aliguori@us.ibm.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
		
			
				
	
	
		
			15 lines
		
	
	
		
			377 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			377 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef QEMU_MULTIBOOT_H
 | |
| #define QEMU_MULTIBOOT_H
 | |
| 
 | |
| #include "hw/nvram/fw_cfg.h"
 | |
| 
 | |
| int load_multiboot(FWCfgState *fw_cfg,
 | |
|                    FILE *f,
 | |
|                    const char *kernel_filename,
 | |
|                    const char *initrd_filename,
 | |
|                    const char *kernel_cmdline,
 | |
|                    int kernel_file_size,
 | |
|                    uint8_t *header);
 | |
| 
 | |
| #endif
 |