diff options
author | Markus Armbruster <armbru@redhat.com> | 2009-06-18 15:14:09 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-06-22 10:15:29 -0500 |
commit | 1f5f6638c063514f193ca447d49fa95f8a574a69 (patch) | |
tree | bbfca84f5610579dccbbc632e96888cc5ce6b23e /hw/pci.h | |
parent | 5607c38820366954c38dd702e979499486057481 (diff) |
Make first argument of monitor command pci_add work
Simply pass the PCI address through qemu_pci_hot_add_nic() to
pci_nic_init() and through qemu_pci_hot_add_storage() to pci_create().
Before, pci_device_hot_add() passed along the PCI bus to use, and
ignored any user-specified slot.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/pci.h')
-rw-r--r-- | hw/pci.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -193,7 +193,6 @@ PCIBus *pci_find_bus(int bus_num); PCIDevice *pci_find_device(int bus_num, int slot, int function); int pci_read_devaddr(const char *addr, int *domp, int *busp, unsigned *slotp); -int pci_assign_devaddr(const char *addr, int *domp, int *busp, unsigned *slotp); void pci_info(Monitor *mon); PCIBus *pci_bridge_init(PCIBus *bus, int devfn, uint16_t vid, uint16_t did, @@ -220,6 +219,7 @@ pci_config_set_class(uint8_t *pci_config, uint16_t val) typedef void (*pci_qdev_initfn)(PCIDevice *dev); void pci_qdev_register(const char *name, int size, pci_qdev_initfn init); +PCIDevice *pci_create(const char *name, const char *devaddr); PCIDevice *pci_create_simple(PCIBus *bus, int devfn, const char *name); /* lsi53c895a.c */ |