aboutsummaryrefslogtreecommitdiff
path: root/src/southbridge/intel/i82371eb/usb.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/southbridge/intel/i82371eb/usb.c')
-rw-r--r--src/southbridge/intel/i82371eb/usb.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/southbridge/intel/i82371eb/usb.c b/src/southbridge/intel/i82371eb/usb.c
index 38ab167733..80b19a187e 100644
--- a/src/southbridge/intel/i82371eb/usb.c
+++ b/src/southbridge/intel/i82371eb/usb.c
@@ -43,6 +43,15 @@ static const struct device_operations usb_ops = {
.ops_pci = 0, /* No subsystem IDs on 82371EB! */
};
+/* Note: No USB on 82371FB/MX (PIIX/MPIIX) and 82437MX. */
+
+/* Intel 82371SB (PIIX3) */
+static const struct pci_driver usb_driver_sb __pci_driver = {
+ .ops = &usb_ops,
+ .vendor = PCI_VENDOR_ID_INTEL,
+ .device = PCI_DEVICE_ID_INTEL_82371SB_USB,
+};
+
/* Intel 82371AB/EB/MB (PIIX4/PIIX4E/PIIX4M) */
/* The 440MX (82443MX) consists of 82443BX + 82371EB (uses same PCI IDs). */
static const struct pci_driver usb_driver_ab_eb_mb __pci_driver = {