diff options
author | imp <imp@FreeBSD.org> | 2005-03-05 18:30:12 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2005-03-05 18:30:12 +0000 |
commit | a2e81fc93f4273fc79567fc60405bfcf7d210748 (patch) | |
tree | afbc163f5f3767268b1fd7ccab0387eedffd6a2a /sys/dev/dpt | |
parent | 5536442ca3f02a1d15b0694da7424ab1f803b2ae (diff) | |
download | FreeBSD-src-a2e81fc93f4273fc79567fc60405bfcf7d210748.zip FreeBSD-src-a2e81fc93f4273fc79567fc60405bfcf7d210748.tar.gz |
Use BUS_PROBE_DEFAULT for pci probe return value
Diffstat (limited to 'sys/dev/dpt')
-rw-r--r-- | sys/dev/dpt/dpt_pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/dpt/dpt_pci.c b/sys/dev/dpt/dpt_pci.c index a3fa41b..309f9ac 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); } |