aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/idt
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2005-03-05 18:17:35 +0000
committerWarner Losh <imp@FreeBSD.org>2005-03-05 18:17:35 +0000
commitb77e575e1dd3257e0ae72a69ee1897510f7a27ed (patch)
treec05e64a4d23479cff13a84a1257adf269a8787f2 /sys/dev/idt
parent96a757bcf1fd827b546a5883ecfd6e1324b474e1 (diff)
downloadsrc-b77e575e1dd3257e0ae72a69ee1897510f7a27ed.tar.gz
src-b77e575e1dd3257e0ae72a69ee1897510f7a27ed.zip
Use BUS_PROBE_DEFAULT for pci probe return value
Notes
Notes: svn path=/head/; revision=143160
Diffstat (limited to 'sys/dev/idt')
-rw-r--r--sys/dev/idt/idt_pci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/idt/idt_pci.c b/sys/dev/idt/idt_pci.c
index 035b68f96f4c..26b1e5a9329d 100644
--- a/sys/dev/idt/idt_pci.c
+++ b/sys/dev/idt/idt_pci.c
@@ -108,7 +108,7 @@ idt_probe(device_t dev)
if ((pci_get_vendor(dev) == t->pci_vid) &&
(pci_get_device(dev) == t->pci_did)) {
device_set_desc(dev, t->pci_name);
- return(0);
+ return(BUS_PROBE_DEFAULT);
}
t++;
}