diff options
author | Bernhard Beschow <shentey@gmail.com> | 2022-03-26 17:58:24 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2022-05-12 12:07:06 +0200 |
commit | 76acef2b735729c642c54385b7566de509506d9a (patch) | |
tree | f7009111f0dd5876802fd5694c0f6b733e43248b /hw/xen/xen_pt.c | |
parent | 4a8027363e9680d00786622ee786fc3ccd6b970b (diff) | |
download | qemu-76acef2b735729c642c54385b7566de509506d9a.zip qemu-76acef2b735729c642c54385b7566de509506d9a.tar.gz qemu-76acef2b735729c642c54385b7566de509506d9a.tar.bz2 |
hw/xen/xen_pt: Resolve igd_passthrough_isa_bridge_create() indirection
Now that igd_passthrough_isa_bridge_create() is implemented within the
xen context it may use Xen* data types directly and become
xen_igd_passthrough_isa_bridge_create(). This resolves an indirection.
Signed-off-by: Bernhard Beschow <shentey@gmail.com>
Acked-by: Anthony PERARD <anthony.perard@citrix.com>
Message-Id: <20220326165825.30794-3-shentey@gmail.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/xen/xen_pt.c')
-rw-r--r-- | hw/xen/xen_pt.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/hw/xen/xen_pt.c b/hw/xen/xen_pt.c index 829ea99..0ec7e52 100644 --- a/hw/xen/xen_pt.c +++ b/hw/xen/xen_pt.c @@ -701,17 +701,6 @@ static const MemoryListener xen_pt_io_listener = { .priority = 10, }; -static void -xen_igd_passthrough_isa_bridge_create(XenPCIPassthroughState *s, - XenHostPCIDevice *dev) -{ - uint16_t gpu_dev_id; - PCIDevice *d = &s->dev; - - gpu_dev_id = dev->device_id; - igd_passthrough_isa_bridge_create(pci_get_bus(d), gpu_dev_id); -} - /* destroy. */ static void xen_pt_destroy(PCIDevice *d) { |