From: Ian Jackson Date: Mon, 23 Mar 2009 16:38:45 +0000 (+0000) Subject: xen_machine_pv.c: switch to C99 initializers X-Git-Tag: xen-3.4.0-rc2~46 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=be5de76f48002e1cae5e7c327abc04092550d29d;p=qemu-xen-4.1-testing.git xen_machine_pv.c: switch to C99 initializers Signed-off-by: Gerd Hoffmann --- diff --git a/hw/xen_machine_pv.c b/hw/xen_machine_pv.c index 674ffca89..df34590e2 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, };