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.


moved over the a real linked list implementation
[palacios.git] / palacios / src / devices / nvram.c
index e811ec2..52ae710 100644 (file)
@@ -159,7 +159,7 @@ static struct vm_device_ops dev_ops = {
 
 
 
-struct vm_device *nvram_create() {
+struct vm_device *create_nvram() {
   struct nvram_internal * nvram_state = os_hooks->malloc(sizeof(struct nvram_internal));
 
   struct vm_device *device = create_device("NVRAM", &dev_ops, nvram_state);