mirror of https://github.com/xqemu/xqemu.git
qtest: fix qpci_config_writel
Found by Paolo. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
9bb931802e
commit
ad489e9346
|
@ -103,7 +103,7 @@ void qpci_config_writew(QPCIDevice *dev, uint8_t offset, uint16_t value)
|
||||||
|
|
||||||
void qpci_config_writel(QPCIDevice *dev, uint8_t offset, uint32_t value)
|
void qpci_config_writel(QPCIDevice *dev, uint8_t offset, uint32_t value)
|
||||||
{
|
{
|
||||||
dev->bus->config_writew(dev->bus, dev->devfn, offset, value);
|
dev->bus->config_writel(dev->bus, dev->devfn, offset, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue