From a2e81fc93f4273fc79567fc60405bfcf7d210748 Mon Sep 17 00:00:00 2001 From: imp Date: Sat, 5 Mar 2005 18:30:12 +0000 Subject: Use BUS_PROBE_DEFAULT for pci probe return value --- sys/dev/hatm/if_hatm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/dev/hatm/if_hatm.c') diff --git a/sys/dev/hatm/if_hatm.c b/sys/dev/hatm/if_hatm.c index cf5b182..e1f9128 100644 --- a/sys/dev/hatm/if_hatm.c +++ b/sys/dev/hatm/if_hatm.c @@ -175,7 +175,7 @@ hatm_probe(device_t dev) if (pci_get_vendor(dev) == hatm_devs[i].vid && pci_get_device(dev) == hatm_devs[i].did) { device_set_desc(dev, hatm_devs[i].name); - return (0); + return (BUS_PROBE_DEFAULT); } return (ENXIO); } -- cgit v1.1