Skip to content

Commit

Permalink
ioh3420: Remove obsoleted, unused ioh3420_init function
Browse files Browse the repository at this point in the history
Signed-off-by: Knut Omang <knut.omang@oracle.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
  • Loading branch information
Knut Omang authored and mstsirkin committed Aug 24, 2014
1 parent 821be9d commit 0f9b177
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions hw/pci-bridge/ioh3420.c
Expand Up @@ -157,30 +157,6 @@ static void ioh3420_exitfn(PCIDevice *d)
pci_bridge_exitfn(d);
}

PCIESlot *ioh3420_init(PCIBus *bus, int devfn, bool multifunction,
const char *bus_name, pci_map_irq_fn map_irq,
uint8_t port, uint8_t chassis, uint16_t slot)
{
PCIDevice *d;
PCIBridge *br;
DeviceState *qdev;

d = pci_create_multifunction(bus, devfn, multifunction, "ioh3420");
if (!d) {
return NULL;
}
br = PCI_BRIDGE(d);

qdev = DEVICE(d);
pci_bridge_map_irq(br, bus_name, map_irq);
qdev_prop_set_uint8(qdev, "port", port);
qdev_prop_set_uint8(qdev, "chassis", chassis);
qdev_prop_set_uint16(qdev, "slot", slot);
qdev_init_nofail(qdev);

return PCIE_SLOT(d);
}

static Property ioh3420_props[] = {
DEFINE_PROP_BIT(COMPAT_PROP_PCP, PCIDevice, cap_present,
QEMU_PCIE_SLTCAP_PCP_BITNR, true),
Expand Down

0 comments on commit 0f9b177

Please sign in to comment.