Fxi support for the Promise SuperTrak 100, the PCI id was wrong.

This commit is contained in:
Søren Schmidt 2002-12-20 12:15:38 +00:00
parent 9a39fc9d73
commit 01ed335875
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=108126

View File

@ -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;
}