From 538565c4a516bd50ffcffbb855026ad914300b73 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Sat, 5 Mar 2005 18:30:12 +0000 Subject: Use BUS_PROBE_DEFAULT for pci probe return value --- sys/dev/dpt/dpt_pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/dev/dpt') diff --git a/sys/dev/dpt/dpt_pci.c b/sys/dev/dpt/dpt_pci.c index a3fa41ba280f7..309f9ac9b4127 100644 --- a/sys/dev/dpt/dpt_pci.c +++ b/sys/dev/dpt/dpt_pci.c @@ -68,7 +68,7 @@ dpt_pci_probe (device_t dev) if ((pci_get_vendor(dev) == DPT_VENDOR_ID) && (pci_get_device(dev) == DPT_DEVICE_ID)) { device_set_desc(dev, "DPT Caching SCSI RAID Controller"); - return (0); + return (BUS_PROBE_DEFAULT); } return (ENXIO); } -- cgit v1.3