qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 1/3] cleanup: bios_error in pc_init1()


From: Leandro Dorileo
Subject: [Qemu-devel] [PATCH 1/3] cleanup: bios_error in pc_init1()
Date: Tue, 31 Mar 2009 10:26:01 -0400

Moved bios_error to the end of pc_init1() function, making the code a
bit more readable.

---
 hw/pc.c |    8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/hw/pc.c b/hw/pc.c
index 176730e..7539a4f 100644
--- a/hw/pc.c
+++ b/hw/pc.c
@@ -847,9 +847,7 @@ static void pc_init1(ram_addr_t ram_size, int vga_ram_size,
     bios_offset = qemu_ram_alloc(bios_size);
     ret = load_image(buf, phys_ram_base + bios_offset);
     if (ret != bios_size) {
-    bios_error:
-        fprintf(stderr, "qemu: could not load PC BIOS '%s'\n", buf);
-        exit(1);
+        goto bios_error;
     }

     if (cirrus_vga_enabled || std_vga_enabled || vmsvga_enabled) {
@@ -1108,6 +1106,10 @@ vga_bios_error:
                 virtio_console_init(pci_bus, virtcon_hds[i]);
         }
     }
+
+bios_error:
+    fprintf(stderr, "qemu: could not load PC BIOS '%s'\n", buf);
+    exit(1);
 }

 static void pc_init_pci(ram_addr_t ram_size, int vga_ram_size,
-- 
1.6.2.1


-- 
(°=   Leandro Dorileo
//\    address@hidden   -   http://www.dorilex.net
V_/  Software is a matter of freedom.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]