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.


large scale namespace changes
[palacios.git] / palacios / src / devices / 8237_dma.c
index d55f7b8..5748d85 100644 (file)
@@ -43,13 +43,13 @@ static struct vm_device_ops dev_ops = {
   .stop = NULL,
 };
 
-struct vm_device * create_dma() {
+struct vm_device * v3_create_dma() {
   struct dma_state * dma = NULL;
 
   dma = (struct dma_state *)V3_Malloc(sizeof(struct dma_state));
   V3_ASSERT(dma != NULL);
 
-  struct vm_device * dev = create_device("DMA", &dev_ops, dma);
+  struct vm_device * dev = v3_create_device("DMA", &dev_ops, dma);
 
   return dma;
 }