mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
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>
14 lines
377 B
C
14 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
|