Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


update to coding standards
Jack Lange [Fri, 22 May 2009 17:15:30 +0000 (12:15 -0500)]
palacios/src/devices/ide.c

index 2b04002..80f76b2 100644 (file)
@@ -1526,10 +1526,11 @@ struct vm_device *  v3_create_ide(struct vm_device * pci_bus, struct vm_device *
     struct vm_device * device = v3_create_device("IDE", &dev_ops, ide);
 
     ide->pci_bus = pci_bus;
-    if (ide->southbridge)
+    if (ide->southbridge) {
         ide->southbridge = (struct v3_southbridge *)(southbridge_dev->private_data);
-    else
+    } else {
        ide->southbridge = NULL;
+    }
 
     PrintDebug("IDE: Creating IDE bus x 2\n");