From be5de76f48002e1cae5e7c327abc04092550d29d Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Mon, 23 Mar 2009 16:38:45 +0000 Subject: [PATCH] xen_machine_pv.c: switch to C99 initializers Signed-off-by: Gerd Hoffmann --- hw/xen_machine_pv.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hw/xen_machine_pv.c b/hw/xen_machine_pv.c index 674ffca8..df34590e 100644 --- a/hw/xen_machine_pv.c +++ b/hw/xen_machine_pv.c @@ -72,10 +72,10 @@ static void xen_init_pv(ram_addr_t ram_size, int vga_ram_size, } QEMUMachine xenpv_machine = { - "xenpv", - "Xen Para-virtualized PC", - xen_init_pv, - BIOS_SIZE | RAMSIZE_FIXED, + .name = "xenpv", + .desc = "Xen Para-virtualized PC", + .init = xen_init_pv, + .ram_require = BIOS_SIZE | RAMSIZE_FIXED, .max_cpus = 1, .nodisk_ok = 1, }; -- 2.39.5