aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/sr
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/sr
parent081322613b3ddb8f27dd3d16ade6cc4befc40e7c (diff)
Notes
Diffstat (limited to 'sys/dev/sr')
-rw-r--r--sys/dev/sr/if_sr_pci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/sr/if_sr_pci.c b/sys/dev/sr/if_sr_pci.c
index 389476126660a..dbb8a83a46ba8 100644
--- a/sys/dev/sr/if_sr_pci.c
+++ b/sys/dev/sr/if_sr_pci.c
@@ -86,7 +86,7 @@ sr_pci_probe(device_t device)
switch(type) {
case 0x556812aa:
device_set_desc(device, "RISCom/N2pci");
- return (0);
+ return (BUS_PROBE_DEFAULT);
break;
case 0x55684778:
case 0x55684877:
@@ -94,7 +94,7 @@ sr_pci_probe(device_t device)
* XXX This can probably be removed sometime.
*/
device_set_desc(device, "RISCom/N2pci (old id)");
- return (0);
+ return (BUS_PROBE_DEFAULT);
break;
default:
break;