diff options
author | Isaku Yamahata <yamahata@valinux.co.jp> | 2009-10-30 21:21:03 +0900 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-11-09 08:43:07 -0600 |
commit | 0392a017ae9b44dd5c29bf7769a96fd6806a3551 (patch) | |
tree | c35a15a25e94fd763bfa99c402fccd2cbc11bfb6 /hw/vga-pci.c | |
parent | 67a51b48c8b7dba1fd79d66aa0a779de59b556f5 (diff) | |
download | qemu-0392a017ae9b44dd5c29bf7769a96fd6806a3551.tar.gz qemu-0392a017ae9b44dd5c29bf7769a96fd6806a3551.tar.bz2 qemu-0392a017ae9b44dd5c29bf7769a96fd6806a3551.zip |
pci: s/PCI_ADDRESS_SPACE_/PCI_BASE_ADDRESS_SPACE_/ to match pci_regs.h
make constants for pci base address match pci_regs.h by
renaming PCI_ADDRESS_SPACE_xxx to PCI_BASE_ADDRESS_SPACE_xxx.
Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
Acked-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/vga-pci.c')
-rw-r--r-- | hw/vga-pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/vga-pci.c b/hw/vga-pci.c index a8ec729e71..acc7861da1 100644 --- a/hw/vga-pci.c +++ b/hw/vga-pci.c @@ -95,7 +95,7 @@ static int pci_vga_initfn(PCIDevice *dev) /* XXX: VGA_RAM_SIZE must be a power of two */ pci_register_bar(&d->dev, 0, VGA_RAM_SIZE, - PCI_ADDRESS_SPACE_MEM_PREFETCH, vga_map); + PCI_BASE_ADDRESS_MEM_PREFETCH, vga_map); if (s->bios_size) { unsigned int bios_total_size; @@ -104,7 +104,7 @@ static int pci_vga_initfn(PCIDevice *dev) while (bios_total_size < s->bios_size) bios_total_size <<= 1; pci_register_bar(&d->dev, PCI_ROM_SLOT, bios_total_size, - PCI_ADDRESS_SPACE_MEM_PREFETCH, vga_map); + PCI_BASE_ADDRESS_MEM_PREFETCH, vga_map); } /* ROM BIOS */ |