summaryrefslogtreecommitdiff
path: root/sys/dev/pst
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2005-03-05 18:10:49 +0000
committerWarner Losh <imp@FreeBSD.org>2005-03-05 18:10:49 +0000
commit6b9907e7f8ba7c43f55d6a4101c31329b45907e0 (patch)
tree8a0f400e5e792e0f80e6277d64df1439693f9b62 /sys/dev/pst
parent99110cb6fe5c89b2043c74638debf6548da6e8fb (diff)
Notes
Diffstat (limited to 'sys/dev/pst')
-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 9d97280ee62d..c5f4a8592160 100644
--- a/sys/dev/pst/pst-pci.c
+++ b/sys/dev/pst/pst-pci.c
@@ -55,13 +55,13 @@ iop_pci_probe(device_t dev)
/* tested with actual hardware kindly donated by Promise */
if (pci_get_devid(dev) == 0x19628086 && pci_get_subvendor(dev) == 0x105a) {
device_set_desc(dev, "Promise SuperTrak SX6000 ATA RAID controller");
- return 0;
+ return BUS_PROBE_DEFAULT;
}
/* 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;
+ return BUS_PROBE_DEFAULT;
}
return ENXIO;