diff options
author | Alex Williamson <alex.williamson@redhat.com> | 2015-09-23 13:04:48 -0600 |
---|---|---|
committer | Alex Williamson <alex.williamson@redhat.com> | 2015-09-23 13:04:48 -0600 |
commit | 958d553405462e95b9d15e8ca6cfb602f7815277 (patch) | |
tree | 24b00cf1487010d022085355bbe1f5450b0d9c63 /hw/vfio/pci.h | |
parent | 0d38fb1c5f921acc050d5f80a2ff4e627b565494 (diff) |
vfio/pci: Remove old config window and mirror quirks
These are now unused.
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Diffstat (limited to 'hw/vfio/pci.h')
-rw-r--r-- | hw/vfio/pci.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/hw/vfio/pci.h b/hw/vfio/pci.h index 8696976293..ddaf3e9b95 100644 --- a/hw/vfio/pci.h +++ b/hw/vfio/pci.h @@ -22,28 +22,6 @@ struct VFIOPCIDevice; -typedef struct VFIOLegacyQuirk { - struct VFIOPCIDevice *vdev; - MemoryRegion *mem; - struct { - uint32_t base_offset:TARGET_PAGE_BITS; - uint32_t address_offset:TARGET_PAGE_BITS; - uint32_t address_size:3; - uint32_t bar:3; - - uint32_t address_match; - uint32_t address_mask; - - uint32_t address_val:TARGET_PAGE_BITS; - uint32_t data_offset:TARGET_PAGE_BITS; - uint32_t data_size:3; - - uint8_t flags; - uint8_t read_flags; - uint8_t write_flags; - } data; -} VFIOLegacyQuirk; - typedef struct VFIOQuirk { QLIST_ENTRY(VFIOQuirk) next; void *data; |