summaryrefslogtreecommitdiffstats
path: root/sys/dev/tx
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2005-03-01 07:50:12 +0000
committerimp <imp@FreeBSD.org>2005-03-01 07:50:12 +0000
commitca5e477ca2bce8c6983ba3d48bdec85ca0c8fd37 (patch)
tree60438a3fca2e5272601be58cd8fca3817dc8ed2d /sys/dev/tx
parentbdb2a763651df2b1f12aa351f33d6d94f620e896 (diff)
downloadFreeBSD-src-ca5e477ca2bce8c6983ba3d48bdec85ca0c8fd37.zip
FreeBSD-src-ca5e477ca2bce8c6983ba3d48bdec85ca0c8fd37.tar.gz
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.
Diffstat (limited to 'sys/dev/tx')
-rw-r--r--sys/dev/tx/if_tx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/tx/if_tx.c b/sys/dev/tx/if_tx.c
index 4351037..a7be029 100644
--- a/sys/dev/tx/if_tx.c
+++ b/sys/dev/tx/if_tx.c
@@ -169,7 +169,7 @@ epic_probe(dev)
if (t != NULL) {
device_set_desc(dev, t->name);
- return (0);
+ return (BUS_PROBE_DEFAULT);
}
return (ENXIO);
OpenPOWER on IntegriCloud