diff options
author | Isaku Yamahata <yamahata@valinux.co.jp> | 2009-11-12 14:58:46 +0900 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2009-12-01 17:52:43 +0200 |
commit | 10c9c329da60fe64ad24dba6f81044559ff15f9b (patch) | |
tree | 9ee0a3ad9bf03ed6161021b95ce1f148feded90f /hw/pci.c | |
parent | b47b0706f15f9427ffc48b0db61f1b6e52b98b2a (diff) |
pci: fix pci_config_get_io_base().
fix typo in pci_config_get_io_base().
Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/pci.c')
-rw-r--r-- | hw/pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -630,7 +630,7 @@ static uint32_t pci_config_get_io_base(PCIDevice *d, val = ((uint32_t)d->config[base] & PCI_IO_RANGE_MASK) << 8; if (d->config[base] & PCI_IO_RANGE_TYPE_32) { - val |= (uint32_t)pci_get_word(d->config + PCI_IO_BASE_UPPER16) << 16; + val |= (uint32_t)pci_get_word(d->config + base_upper16) << 16; } return val; } |