aboutsummaryrefslogtreecommitdiff
path: root/src/southbridge/intel/i82371eb/isa.c
diff options
context:
space:
mode:
authorPatrick Georgi <pgeorgi@google.com>2020-03-03 17:05:25 +0000
committerPatrick Georgi <pgeorgi@google.com>2020-03-06 07:48:46 +0000
commit17dda3adb3850bdebc94aca693405e753f6910ab (patch)
tree5be147a030e4e37b62b320366d44923b2e6aec7d /src/southbridge/intel/i82371eb/isa.c
parent11f0079c5ac0c5e98682f3ce67763e684433c7f8 (diff)
Revert "i82371eb: Drop support for older PIIX chips"
This reverts commit 2b9004de602f98a404b17584ab3e1451f165c1f4. Reason for revert: QEMU emulates that chipset and with that commit a Linux guest kernel can't find IDE devices anymore. Change-Id: Iad75af4ea9993d6a2ec5433ad30d39900dab874e Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/39238 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-by: Keith Hui <buurin@gmail.com>
Diffstat (limited to 'src/southbridge/intel/i82371eb/isa.c')
-rw-r--r--src/southbridge/intel/i82371eb/isa.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/southbridge/intel/i82371eb/isa.c b/src/southbridge/intel/i82371eb/isa.c
index bdad959100..3d1970c0ee 100644
--- a/src/southbridge/intel/i82371eb/isa.c
+++ b/src/southbridge/intel/i82371eb/isa.c
@@ -145,3 +145,9 @@ static const struct pci_driver isa_driver __pci_driver = {
.vendor = PCI_VENDOR_ID_INTEL,
.device = PCI_DEVICE_ID_INTEL_82371AB_ISA,
};
+
+static const struct pci_driver isa_SB_driver __pci_driver = {
+ .ops = &isa_ops,
+ .vendor = PCI_VENDOR_ID_INTEL,
+ .device = PCI_DEVICE_ID_INTEL_82371SB_ISA,
+};