[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 1/5] xen_machine_pv.c: switch to C99 initializers.
Signed-off-by: Gerd Hoffmann <kraxel@xxxxxxxxxx> --- hw/xen_machine_pv.c | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/hw/xen_machine_pv.c b/hw/xen_machine_pv.c index 674ffca..df34590 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, }; -- 1.6.1.3 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |