usb/ehci-pci: add ich9 00:1a.* variant

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
Gerd Hoffmann 2012-10-30 13:17:46 +01:00
parent df01318777
commit ba07630c79
1 changed files with 6 additions and 1 deletions

View File

@ -116,10 +116,15 @@ static struct EHCIPCIInfo ehci_pci_info[] = {
.device_id = PCI_DEVICE_ID_INTEL_82801D, /* ich4 */ .device_id = PCI_DEVICE_ID_INTEL_82801D, /* ich4 */
.revision = 0x10, .revision = 0x10,
},{ },{
.name = "ich9-usb-ehci1", .name = "ich9-usb-ehci1", /* 00:1d.7 */
.vendor_id = PCI_VENDOR_ID_INTEL, .vendor_id = PCI_VENDOR_ID_INTEL,
.device_id = PCI_DEVICE_ID_INTEL_82801I_EHCI1, .device_id = PCI_DEVICE_ID_INTEL_82801I_EHCI1,
.revision = 0x03, .revision = 0x03,
},{
.name = "ich9-usb-ehci2", /* 00:1a.7 */
.vendor_id = PCI_VENDOR_ID_INTEL,
.device_id = PCI_DEVICE_ID_INTEL_82801I_EHCI2,
.revision = 0x03,
} }
}; };