diff options
| author | Avi Kivity <avi@redhat.com> | 2011-08-08 16:09:31 +0300 |
|---|---|---|
| committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-08-08 10:22:30 -0500 |
| commit | e824b2cc3b4f6fbcbaa254abd8db55d2fbe8d19e (patch) | |
| tree | 72d1a08845c780d6a82cea88f3dd6ea2e5ca7e2e /hw/pci.c | |
| parent | 50181f10dae755aad2b4f4f486d18e48dd66ea37 (diff) | |
| download | focaccia-qemu-e824b2cc3b4f6fbcbaa254abd8db55d2fbe8d19e.tar.gz focaccia-qemu-e824b2cc3b4f6fbcbaa254abd8db55d2fbe8d19e.zip | |
pci: rename pci_register_bar_region() to pci_register_bar()
Reviewed-by: Richard Henderson <rth@twiddle.net> Reviewed-by: Anthony Liguori <aliguori@us.ibm.com> Signed-off-by: Avi Kivity <avi@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/pci.c')
| -rw-r--r-- | hw/pci.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/pci.c b/hw/pci.c index aa17395f7b..6547d2bcc2 100644 --- a/hw/pci.c +++ b/hw/pci.c @@ -881,8 +881,8 @@ static int pci_unregister_device(DeviceState *dev) return 0; } -void pci_register_bar_region(PCIDevice *pci_dev, int region_num, - uint8_t type, MemoryRegion *memory) +void pci_register_bar(PCIDevice *pci_dev, int region_num, + uint8_t type, MemoryRegion *memory) { PCIIORegion *r; uint32_t addr; @@ -1956,7 +1956,7 @@ static int pci_add_option_rom(PCIDevice *pdev, bool is_default_rom) qemu_put_ram_ptr(ptr); - pci_register_bar_region(pdev, PCI_ROM_SLOT, 0, &pdev->rom); + pci_register_bar(pdev, PCI_ROM_SLOT, 0, &pdev->rom); return 0; } |