summaryrefslogtreecommitdiff
path: root/hw/pci.c
diff options
context:
space:
mode:
authorJan Kiszka <jan.kiszka@siemens.com>2011-09-08 12:44:47 +0200
committerMichael S. Tsirkin <mst@redhat.com>2011-09-19 21:22:29 +0300
commitab346bb23f4ba6f78392b1e55e01a9e58b993887 (patch)
treeface5657c20ed9e7e29d616c82b6e0484cc2d36b /hw/pci.c
parent530889ff95659d8fea81eb556e5706387fdddfa7 (diff)
downloadqemu-ab346bb23f4ba6f78392b1e55e01a9e58b993887.tar.gz
pci: Remove unused pci_reserve_capability
eepro100 was the last user. Now pci_add_capability is powerful enough. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/pci.c')
-rw-r--r--hw/pci.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/hw/pci.c b/hw/pci.c
index af7400374b..07659632c5 100644
--- a/hw/pci.c
+++ b/hw/pci.c
@@ -2016,12 +2016,6 @@ void pci_del_capability(PCIDevice *pdev, uint8_t cap_id, uint8_t size)
pdev->config[PCI_STATUS] &= ~PCI_STATUS_CAP_LIST;
}
-/* Reserve space for capability at a known offset (to call after load). */
-void pci_reserve_capability(PCIDevice *pdev, uint8_t offset, uint8_t size)
-{
- memset(pdev->used + offset, 0xff, size);
-}
-
uint8_t pci_find_capability(PCIDevice *pdev, uint8_t cap_id)
{
return pci_find_capability_list(pdev, cap_id, NULL);