aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/sym
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2005-03-06 06:55:11 +0000
committerWarner Losh <imp@FreeBSD.org>2005-03-06 06:55:11 +0000
commit12d4efa1b0875afa14be4f1b2f4ab50dfd3e4548 (patch)
tree3c2597c12554b3fd0722c09c9c2ff5e341f67b94 /sys/dev/sym
parent74d1ed239bce0eac7f24b3765b930ab339692191 (diff)
Notes
Diffstat (limited to 'sys/dev/sym')
-rw-r--r--sys/dev/sym/sym_hipd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/sym/sym_hipd.c b/sys/dev/sym/sym_hipd.c
index 103d53983a79..7e05c2257e65 100644
--- a/sys/dev/sym/sym_hipd.c
+++ b/sys/dev/sym/sym_hipd.c
@@ -8642,7 +8642,8 @@ sym_pci_probe(device_t dev)
chip = sym_find_pci_chip(dev);
if (chip && sym_find_firmware(chip)) {
device_set_desc(dev, chip->name);
- return (chip->lp_probe_bit & SYM_SETUP_LP_PROBE_MAP)? -2000 : 0;
+ return (chip->lp_probe_bit & SYM_SETUP_LP_PROBE_MAP)?
+ BUS_PROBE_LOW_PRIORITY : BUS_PROBE_DEFAULT;
}
return ENXIO;
}