summary refs log tree commit diff stats
path: root/hw/tosa.c
diff options
context:
space:
mode:
authoraliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162>2008-10-07 20:34:35 +0000
committeraliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162>2008-10-07 20:34:35 +0000
commit4b32e1688000d306a676b0a5b89629b9d8da1ed7 (patch)
treea25ab8696b3d8b8ccac8e753be21298422448f78 /hw/tosa.c
parent0f431527b79fbd28fb9fcd898ff379331258354a (diff)
downloadfocaccia-qemu-4b32e1688000d306a676b0a5b89629b9d8da1ed7.tar.gz
focaccia-qemu-4b32e1688000d306a676b0a5b89629b9d8da1ed7.zip
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/tosa.c')
-rw-r--r--hw/tosa.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/hw/tosa.c b/hw/tosa.c
index f67d67e199..75df52ec7d 100644
--- a/hw/tosa.c
+++ b/hw/tosa.c
@@ -119,8 +119,8 @@ static void tosa_init(ram_addr_t ram_size, int vga_ram_size,
 }
 
 QEMUMachine tosapda_machine = {
-    "tosa",
-    "Tosa PDA (PXA255)",
-    tosa_init,
-    TOSA_RAM + TOSA_ROM + PXA2XX_INTERNAL_SIZE + RAMSIZE_FIXED,
+    .name = "tosa",
+    .desc = "Tosa PDA (PXA255)",
+    .init = tosa_init,
+    .ram_require = TOSA_RAM + TOSA_ROM + PXA2XX_INTERNAL_SIZE + RAMSIZE_FIXED,
 };