aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/safe
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2005-03-01 08:58:06 +0000
committerWarner Losh <imp@FreeBSD.org>2005-03-01 08:58:06 +0000
commitd2b677bb1ad8b7b83a1a54d988de291088d165a5 (patch)
treea34360b3a438a6bdc8d086e0c722c1abea55e974 /sys/dev/safe
parent081322613b3ddb8f27dd3d16ade6cc4befc40e7c (diff)
downloadsrc-d2b677bb1ad8b7b83a1a54d988de291088d165a5.tar.gz
src-d2b677bb1ad8b7b83a1a54d988de291088d165a5.zip
Use BUS_PROBE_DEFAULT in preference to 0 and BUS_PROBE_LOW_PRIORITY in
preference to some random negative number to allow other drivers a bite at the apple.
Notes
Notes: svn path=/head/; revision=142890
Diffstat (limited to 'sys/dev/safe')
-rw-r--r--sys/dev/safe/safe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/safe/safe.c b/sys/dev/safe/safe.c
index 828d67d78a4d..9d012f172de9 100644
--- a/sys/dev/safe/safe.c
+++ b/sys/dev/safe/safe.c
@@ -184,7 +184,7 @@ safe_probe(device_t dev)
{
if (pci_get_vendor(dev) == PCI_VENDOR_SAFENET &&
pci_get_device(dev) == PCI_PRODUCT_SAFEXCEL)
- return (0);
+ return (BUS_PROBE_DEFAULT);
return (ENXIO);
}