提交 10c9c329 编写于 作者: I Isaku Yamahata 提交者: Michael S. Tsirkin

pci: fix pci_config_get_io_base().

fix typo in pci_config_get_io_base().
Signed-off-by: NIsaku Yamahata <yamahata@valinux.co.jp>
Signed-off-by: NMichael S. Tsirkin <mst@redhat.com>
上级 b47b0706
......@@ -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;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册