diff options
author | Isaku Yamahata | 2009-05-03 21:03:00 +0200 |
---|---|---|
committer | Blue Swirl | 2009-05-03 21:03:00 +0200 |
commit | 6407f37373093fd56cde9e20b0b5a878b67521ca (patch) | |
tree | 88aaaa831dd73aa4d3381a53f506ea89b7d685bf /hw/virtio.c | |
parent | Fix typos in comments in exec.c (diff) | |
download | qemu-6407f37373093fd56cde9e20b0b5a878b67521ca.tar.gz qemu-6407f37373093fd56cde9e20b0b5a878b67521ca.tar.xz qemu-6407f37373093fd56cde9e20b0b5a878b67521ca.zip |
use PCI_HEADER_TYPE.
use symbolic value instead of 0x0e and related value.
Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
Diffstat (limited to 'hw/virtio.c')
-rw-r--r-- | hw/virtio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/virtio.c b/hw/virtio.c index 4aa5f20a78..78c7637658 100644 --- a/hw/virtio.c +++ b/hw/virtio.c @@ -788,7 +788,7 @@ VirtIODevice *virtio_init_pci(PCIBus *bus, const char *name, config[0x09] = pif; pci_config_set_class(config, class_code); - config[0x0e] = 0x00; + config[PCI_HEADER_TYPE] = PCI_HEADER_TYPE_NORMAL; config[0x2c] = subvendor & 0xFF; config[0x2d] = (subvendor >> 8) & 0xFF; |