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.


minor bug fixes, and copyright additions
[palacios.git] / palacios / src / devices / generic.c
index dc018ab..98836d1 100644 (file)
@@ -101,10 +101,6 @@ int generic_write_port_passthrough(ushort_t port,
 
   switch (length) {
   case 1:
-<<<<<<< HEAD:palacios/src/devices/generic.c
-=======
-
->>>>>>> ramdisk:palacios/src/devices/generic.c
     v3_outb(port,((uchar_t*)src)[0]);
     break;
   case 2:
@@ -112,10 +108,6 @@ int generic_write_port_passthrough(ushort_t port,
     break;
   case 4:
     v3_outdw(port,((uint_t*)src)[0]);
-<<<<<<< HEAD:palacios/src/devices/generic.c
-=======
-
->>>>>>> ramdisk:palacios/src/devices/generic.c
     break;
   default:
     for (i = 0; i < length; i++) {