From ca5e477ca2bce8c6983ba3d48bdec85ca0c8fd37 Mon Sep 17 00:00:00 2001 From: imp Date: Tue, 1 Mar 2005 07:50:12 +0000 Subject: Use BUS_PROBE_DEFAULT in preference to 0. Also for vx, return BUS_PROBE_LOW_PRIORITY in stead of ifdef for devices that xl and vx both support so that xl will snarf them on up. --- sys/dev/txp/if_txp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/dev/txp') diff --git a/sys/dev/txp/if_txp.c b/sys/dev/txp/if_txp.c index a280532..8e708eb 100644 --- a/sys/dev/txp/if_txp.c +++ b/sys/dev/txp/if_txp.c @@ -202,7 +202,7 @@ txp_probe(dev) if ((pci_get_vendor(dev) == t->txp_vid) && (pci_get_device(dev) == t->txp_did)) { device_set_desc(dev, t->txp_name); - return(0); + return(BUS_PROBE_DEFAULT); } t++; } -- cgit v1.1