summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsos <sos@FreeBSD.org>2002-12-20 12:15:38 +0000
committersos <sos@FreeBSD.org>2002-12-20 12:15:38 +0000
commitf61a7e8f649bf6a8f40c5bab168c422fa7a917ca (patch)
tree5914223ef693e7e9b5bf301a833606c4b868bc53
parent0321fa8ab16a05482fd48ed4701e1fc8633ac6be (diff)
downloadFreeBSD-src-f61a7e8f649bf6a8f40c5bab168c422fa7a917ca.zip
FreeBSD-src-f61a7e8f649bf6a8f40c5bab168c422fa7a917ca.tar.gz
Fxi support for the Promise SuperTrak 100, the PCI id was wrong.
-rw-r--r--sys/dev/pst/pst-pci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pst/pst-pci.c b/sys/dev/pst/pst-pci.c
index 3bba025..0955450 100644
--- a/sys/dev/pst/pst-pci.c
+++ b/sys/dev/pst/pst-pci.c
@@ -55,8 +55,8 @@ iop_pci_probe(device_t dev)
return 0;
}
- /* this should work as well (not tested no hardware) */
- if (pci_get_devid(dev) == 0x09628086 && pci_get_subvendor(dev) == 0x105a) {
+ /* support the older SuperTrak 100 as well */
+ if (pci_get_devid(dev) == 0x19608086 && pci_get_subvendor(dev) == 0x105a) {
device_set_desc(dev, "Promise SuperTrak 100 ATA RAID controller");
return 0;
}
OpenPOWER on IntegriCloud