summary refs log tree commit diff stats
path: root/hw/pci.c
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2009-09-25 03:53:52 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2009-10-05 09:32:53 -0500
commit3312958dba81a8aa748f7dc5bfd360f5c9e8ea13 (patch)
tree383a325bc5e01cfda538eab8fd11f3abe68bdafb /hw/pci.c
parent07caea315a85ebfe90851f9c2e4ef3fdd24117b5 (diff)
downloadfocaccia-qemu-3312958dba81a8aa748f7dc5bfd360f5c9e8ea13.tar.gz
focaccia-qemu-3312958dba81a8aa748f7dc5bfd360f5c9e8ea13.zip
pci_create() is now unused, remove it
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/pci.c')
-rw-r--r--hw/pci.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/hw/pci.c b/hw/pci.c
index dfdae1cad7..fd66d1f75b 100644
--- a/hw/pci.c
+++ b/hw/pci.c
@@ -809,24 +809,6 @@ void pci_info(Monitor *mon)
     pci_for_each_device(0, pci_info_device);
 }
 
-PCIDevice *pci_create(const char *name, const char *devaddr)
-{
-    PCIBus *bus;
-    int devfn;
-    DeviceState *dev;
-
-    bus = pci_get_bus_devfn(&devfn, devaddr);
-    if (!bus) {
-        fprintf(stderr, "Invalid PCI device address %s for device %s\n",
-                devaddr, name);
-        exit(1);
-    }
-
-    dev = qdev_create(&bus->qbus, name);
-    qdev_prop_set_uint32(dev, "addr", devfn);
-    return (PCIDevice *)dev;
-}
-
 static const char * const pci_nic_models[] = {
     "ne2k_pci",
     "i82551",