summary refs log tree commit diff stats
path: root/hw/sun4u.c
diff options
context:
space:
mode:
Diffstat (limited to 'hw/sun4u.c')
-rw-r--r--hw/sun4u.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/hw/sun4u.c b/hw/sun4u.c
index 36d6946f87..d8cc2d6a6c 100644
--- a/hw/sun4u.c
+++ b/hw/sun4u.c
@@ -446,15 +446,15 @@ static void sun4v_init(ram_addr_t RAM_size, int vga_ram_size,
 }
 
 QEMUMachine sun4u_machine = {
-    "sun4u",
-    "Sun4u platform",
-    sun4u_init,
-    PROM_SIZE_MAX + VGA_RAM_SIZE,
+    .name = "sun4u",
+    .desc = "Sun4u platform",
+    .init = sun4u_init,
+    .ram_require = PROM_SIZE_MAX + VGA_RAM_SIZE,
 };
 
 QEMUMachine sun4v_machine = {
-    "sun4v",
-    "Sun4v platform",
-    sun4v_init,
-    PROM_SIZE_MAX + VGA_RAM_SIZE,
+    .name = "sun4v",
+    .desc = "Sun4v platform",
+    .init = sun4v_init,
+    .ram_require = PROM_SIZE_MAX + VGA_RAM_SIZE,
 };