From: Jack Lange Date: Sat, 14 Mar 2009 17:18:54 +0000 (-0500) Subject: it helps if we don't confuse PCI with the PIC... X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?p=palacios.git;a=commitdiff_plain;h=c0ec5d15ba364fce338a9649d828a813ebab2234 it helps if we don't confuse PCI with the PIC... --- diff --git a/palacios/src/palacios/vmm_config.c b/palacios/src/palacios/vmm_config.c index 344548f..631fe5c 100644 --- a/palacios/src/palacios/vmm_config.c +++ b/palacios/src/palacios/vmm_config.c @@ -279,12 +279,12 @@ static int setup_memory_map(struct guest_info * info, struct v3_vm_config * conf static int setup_devices(struct guest_info * info, struct v3_vm_config * config_ptr) { struct vm_device * ramdisk = NULL; struct vm_device * cdrom = NULL; +#ifdef DEBUG_PCI struct vm_device * pci = v3_create_pci(); +#endif struct vm_device * nvram = v3_create_nvram(); //struct vm_device * timer = v3_create_timer(); -#ifdef DEBUG_PCI struct vm_device * pic = v3_create_pic(); -#endif struct vm_device * keyboard = v3_create_keyboard(); struct vm_device * pit = v3_create_pit(); struct vm_device * bochs_debug = v3_create_bochs_debug();