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
 |