pc: Drop redundant test for ROM memory region

Just a few lines above, we already initialize rom_memory accordingly.

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
This commit is contained in:
Jan Kiszka 2012-11-01 17:29:24 +01:00 committed by Stefan Hajnoczi
parent 8b9c99d9dc
commit 0d3cf3b6ff
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ static void pc_init1(MemoryRegion *system_memory,
fw_cfg = pc_memory_init(system_memory,
kernel_filename, kernel_cmdline, initrd_filename,
below_4g_mem_size, above_4g_mem_size,
pci_enabled ? rom_memory : system_memory, &ram_memory);
rom_memory, &ram_memory);
}
gsi_state = g_malloc0(sizeof(*gsi_state));