diff options
| author | Isaku Yamahata <yamahata@valinux.co.jp> | 2009-12-15 20:25:59 +0900 |
|---|---|---|
| committer | Michael S. Tsirkin <mst@redhat.com> | 2009-12-23 16:35:00 +0200 |
| commit | 3d09c490e57cd150f07a698e611ad7e4d7fca265 (patch) | |
| tree | 49c6a6371c69a2ab57e62a25af3f0e1d0e79f334 /hw/pci.c | |
| parent | b8ba4176aa7be786c9182313e13d77bb30542e7b (diff) | |
| download | focaccia-qemu-3d09c490e57cd150f07a698e611ad7e4d7fca265.tar.gz focaccia-qemu-3d09c490e57cd150f07a698e611ad7e4d7fca265.zip | |
pci: s/PCI_SUBVENDOR_ID/PCI_SUBSYSTEM_VENDOR_ID/g
To match Linux PCI register definition, rename PCI_SUBVENDOR_ID to PCI_SUBSYSTEM_VENDOR_ID. 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
diff --git a/hw/pci.c b/hw/pci.c index 35c3a68405..bf6ceb9c70 100644 --- a/hw/pci.c +++ b/hw/pci.c @@ -414,7 +414,7 @@ static int pci_set_default_subsystem_id(PCIDevice *pci_dev) { uint16_t *id; - id = (void*)(&pci_dev->config[PCI_SUBVENDOR_ID]); + id = (void*)(&pci_dev->config[PCI_SUBSYSTEM_VENDOR_ID]); id[0] = cpu_to_le16(pci_default_sub_vendor_id); id[1] = cpu_to_le16(pci_default_sub_device_id); return 0; |