diff options
author | aliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-10-07 20:34:35 +0000 |
---|---|---|
committer | aliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-10-07 20:34:35 +0000 |
commit | 4b32e1688000d306a676b0a5b89629b9d8da1ed7 (patch) | |
tree | a25ab8696b3d8b8ccac8e753be21298422448f78 /hw/gumstix.c | |
parent | 0f431527b79fbd28fb9fcd898ff379331258354a (diff) |
machine struct - use C99 initializers (Jes Sorensen)
Modify all the machine struct declarations to use C99 initializers.
This patch has no functional changes.
Signed-off-by: Jes Sorensen <jes@sgi.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5442 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/gumstix.c')
-rw-r--r-- | hw/gumstix.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/hw/gumstix.c b/hw/gumstix.c index 89bf684983..29cd69df24 100644 --- a/hw/gumstix.c +++ b/hw/gumstix.c @@ -122,15 +122,15 @@ static void verdex_init(ram_addr_t ram_size, int vga_ram_size, } QEMUMachine connex_machine = { - "connex", - "Gumstix Connex (PXA255)", - connex_init, - (0x05000000 + PXA2XX_INTERNAL_SIZE) | RAMSIZE_FIXED, + .name = "connex", + .desc = "Gumstix Connex (PXA255)", + .init = connex_init, + .ram_require = (0x05000000 + PXA2XX_INTERNAL_SIZE) | RAMSIZE_FIXED, }; QEMUMachine verdex_machine = { - "verdex", - "Gumstix Verdex (PXA270)", - verdex_init, - (0x12000000 + PXA2XX_INTERNAL_SIZE) | RAMSIZE_FIXED, + .name = "verdex", + .desc = "Gumstix Verdex (PXA270)", + .init = verdex_init, + .ram_require = (0x12000000 + PXA2XX_INTERNAL_SIZE) | RAMSIZE_FIXED, }; |