mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
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>
This commit is contained in:
parent
b8ba4176aa
commit
3d09c490e5
2 changed files with 2 additions and 2 deletions
2
hw/pci.c
2
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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue