|  | @@ -107,11 +107,11 @@ struct virtio_pci_region {
 | 
		
	
		
			
			| 107 | 107 |  /* How to interpret the base field */
 | 
		
	
		
			
			| 108 | 108 |  #define VIRTIO_PCI_REGION_TYPE_MASK  0x00000003
 | 
		
	
		
			
			| 109 | 109 |  /* The base field is a memory address */
 | 
		
	
		
			
			| 110 |  | -#define VIRTIO_PCI_REGION_MEMORY     0x00000000
 | 
		
	
		
			
			|  | 110 | +#define VIRTIO_PCI_REGION_MEMORY     0x00000001
 | 
		
	
		
			
			| 111 | 111 |  /* The base field is a port address */
 | 
		
	
		
			
			| 112 |  | -#define VIRTIO_PCI_REGION_PORT       0x00000001
 | 
		
	
		
			
			|  | 112 | +#define VIRTIO_PCI_REGION_PORT       0x00000002
 | 
		
	
		
			
			| 113 | 113 |  /* The base field is an offset within the PCI bar */
 | 
		
	
		
			
			| 114 |  | -#define VIRTIO_PCI_REGION_PCI_CONFIG 0x00000002
 | 
		
	
		
			
			|  | 114 | +#define VIRTIO_PCI_REGION_PCI_CONFIG 0x00000003
 | 
		
	
		
			
			| 115 | 115 |      unsigned flags;
 | 
		
	
		
			
			| 116 | 116 |  };
 | 
		
	
		
			
			| 117 | 117 |  
 |