diff options
author | gallatin <gallatin@FreeBSD.org> | 2000-10-29 16:27:40 +0000 |
---|---|---|
committer | gallatin <gallatin@FreeBSD.org> | 2000-10-29 16:27:40 +0000 |
commit | 13581bd748ff51a32a5893ce264830957a49a2ad (patch) | |
tree | 03266473e9a77319a6d5ae37099ebaa493c8c2b9 | |
parent | e401b83c31c135957d1a7be0c6e3d9a397af04f4 (diff) | |
download | FreeBSD-src-13581bd748ff51a32a5893ce264830957a49a2ad.zip FreeBSD-src-13581bd748ff51a32a5893ce264830957a49a2ad.tar.gz |
Unmask cypress ata controllers. This bug was hidden before
the addition of the serverworks isab support because the
cypress case was the last one in the switch
-rw-r--r-- | sys/pci/pcisupport.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/pci/pcisupport.c b/sys/pci/pcisupport.c index 94f19d9..78024652 100644 --- a/sys/pci/pcisupport.c +++ b/sys/pci/pcisupport.c @@ -960,6 +960,7 @@ isab_match(device_t dev) if (pci_get_class(dev) == PCIC_BRIDGE && pci_get_subclass(dev) == PCIS_BRIDGE_ISA) return ("Cypress 82C693 PCI-ISA bridge"); + break; /* ServerWorks -- vendor 0x1166 */ case 0x02001166: |