diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-04-07 19:47:25 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-04-07 19:47:25 +0000 |
commit | 26fb5e48d9b4ab676b7b78e0f38e8e4ed126f047 (patch) | |
tree | 8a26110a839b6ff752a92ee2c8f0cb1005579161 /hw/pc.c | |
parent | 4ce7ff6e68e9a13ff7da67d00cfc19e64e7aaef0 (diff) | |
download | qemu-26fb5e48d9b4ab676b7b78e0f38e8e4ed126f047.zip |
Fix vmmouse with -smp
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4165 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/pc.c')
-rw-r--r-- | hw/pc.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -748,9 +748,10 @@ static void pc_init1(int ram_size, int vga_ram_size, if (pci_enabled) { apic_init(env); } - vmport_init(env); } + vmport_init(); + /* allocate RAM */ ram_addr = qemu_ram_alloc(ram_size); cpu_register_physical_memory(0, ram_size, ram_addr); |