mirror of https://github.com/xqemu/xqemu.git
pci: fix BRDIGE typo
Fix typo in macro name: PCI_CLASS_BRDIGE_PCI_INF_SUB. Signed-off-by: Don Koch <dkoch@verizon.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
e78e9ae4a9
commit
4268b09627
|
@ -69,7 +69,7 @@ static int i82801b11_bridge_initfn(PCIDevice *d)
|
||||||
if (rc < 0) {
|
if (rc < 0) {
|
||||||
goto err_bridge;
|
goto err_bridge;
|
||||||
}
|
}
|
||||||
pci_config_set_prog_interface(d->config, PCI_CLASS_BRDIGE_PCI_INF_SUB);
|
pci_config_set_prog_interface(d->config, PCI_CLASS_BRIDGE_PCI_INF_SUB);
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
err_bridge:
|
err_bridge:
|
||||||
|
|
|
@ -39,7 +39,7 @@
|
||||||
#define PCI_CLASS_BRIDGE_HOST 0x0600
|
#define PCI_CLASS_BRIDGE_HOST 0x0600
|
||||||
#define PCI_CLASS_BRIDGE_ISA 0x0601
|
#define PCI_CLASS_BRIDGE_ISA 0x0601
|
||||||
#define PCI_CLASS_BRIDGE_PCI 0x0604
|
#define PCI_CLASS_BRIDGE_PCI 0x0604
|
||||||
#define PCI_CLASS_BRDIGE_PCI_INF_SUB 0x01
|
#define PCI_CLASS_BRIDGE_PCI_INF_SUB 0x01
|
||||||
#define PCI_CLASS_BRIDGE_OTHER 0x0680
|
#define PCI_CLASS_BRIDGE_OTHER 0x0680
|
||||||
|
|
||||||
#define PCI_CLASS_COMMUNICATION_SERIAL 0x0700
|
#define PCI_CLASS_COMMUNICATION_SERIAL 0x0700
|
||||||
|
|
Loading…
Reference in New Issue