diff options
| author | Søren Schmidt <sos@FreeBSD.org> | 2002-12-20 12:15:38 +0000 |
|---|---|---|
| committer | Søren Schmidt <sos@FreeBSD.org> | 2002-12-20 12:15:38 +0000 |
| commit | 01ed3358754241fd47ae4de8c6299df4a5701762 (patch) | |
| tree | 5914223ef693e7e9b5bf301a833606c4b868bc53 /sys/dev/pst | |
| parent | 9a39fc9d73446d222c1b4fa139d3fb06a7a4e2df (diff) | |
Notes
Diffstat (limited to 'sys/dev/pst')
| -rw-r--r-- | sys/dev/pst/pst-pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pst/pst-pci.c b/sys/dev/pst/pst-pci.c index 3bba025134e4..0955450f1cf4 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; } |
