提交 3312958d 编写于 作者: M Markus Armbruster 提交者: Anthony Liguori

pci_create() is now unused, remove it

Signed-off-by: NMarkus Armbruster <armbru@redhat.com>
Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
上级 07caea31
......@@ -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",
......
......@@ -339,7 +339,6 @@ typedef struct {
void pci_qdev_register(PCIDeviceInfo *info);
void pci_qdev_register_many(PCIDeviceInfo *info);
PCIDevice *pci_create(const char *name, const char *devaddr);
PCIDevice *pci_create_noinit(PCIBus *bus, int devfn, const char *name);
PCIDevice *pci_create_simple(PCIBus *bus, int devfn, const char *name);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册