diff options
Diffstat (limited to 'include/hw/hw.h')
-rw-r--r-- | include/hw/hw.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/hw/hw.h b/include/hw/hw.h index 1fb9afa322..cc9f847ea6 100644 --- a/include/hw/hw.h +++ b/include/hw/hw.h @@ -44,9 +44,9 @@ void qemu_unregister_reset(QEMUResetHandler *func, void *opaque); /* handler to set the boot_device order for a specific type of QEMUMachine */ /* return 0 if success */ -typedef int QEMUBootSetHandler(void *opaque, const char *boot_devices); +typedef int QEMUBootSetHandler(void *opaque, const char *boot_order); void qemu_register_boot_set(QEMUBootSetHandler *func, void *opaque); -int qemu_boot_set(const char *boot_devices); +int qemu_boot_set(const char *boot_order); #ifdef NEED_CPU_H #if TARGET_LONG_BITS == 64 |