summary refs log tree commit diff stats
path: root/hw/pc.c
diff options
context:
space:
mode:
authorpbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162>2009-04-11 17:33:00 +0000
committerpbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162>2009-04-11 17:33:00 +0000
commit190cd0215b1667d41db4ca2f04f0e1fa8c75027c (patch)
tree5c525c17e669bf88d366012166fb483b2e7316f5 /hw/pc.c
parenta0b753dfd3920df146a5f4d05e442e3c522900c7 (diff)
downloadfocaccia-qemu-190cd0215b1667d41db4ca2f04f0e1fa8c75027c.tar.gz
focaccia-qemu-190cd0215b1667d41db4ca2f04f0e1fa8c75027c.zip
Remove redundant ram_require machine properly.
Signed-off-by: Paul Brook <paul@codesourcery.com>


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@7090 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/pc.c')
-rw-r--r--hw/pc.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/hw/pc.c b/hw/pc.c
index 5f7b7d5f74..6a1750e10b 100644
--- a/hw/pc.c
+++ b/hw/pc.c
@@ -1137,7 +1137,6 @@ QEMUMachine pc_machine = {
     .name = "pc",
     .desc = "Standard PC",
     .init = pc_init_pci,
-    .ram_require = VGA_RAM_SIZE + PC_MAX_BIOS_SIZE,
     .max_cpus = 255,
 };
 
@@ -1145,6 +1144,5 @@ QEMUMachine isapc_machine = {
     .name = "isapc",
     .desc = "ISA-only PC",
     .init = pc_init_isa,
-    .ram_require = VGA_RAM_SIZE + PC_MAX_BIOS_SIZE,
     .max_cpus = 1,
 };