diff options
author | imp <imp@FreeBSD.org> | 2005-03-01 07:50:12 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2005-03-01 07:50:12 +0000 |
commit | ca5e477ca2bce8c6983ba3d48bdec85ca0c8fd37 (patch) | |
tree | 60438a3fca2e5272601be58cd8fca3817dc8ed2d /sys/dev/twa | |
parent | bdb2a763651df2b1f12aa351f33d6d94f620e896 (diff) | |
download | FreeBSD-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/twa')
-rw-r--r-- | sys/dev/twa/twa_freebsd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/twa/twa_freebsd.c b/sys/dev/twa/twa_freebsd.c index 7c07a9c..7eff607 100644 --- a/sys/dev/twa/twa_freebsd.c +++ b/sys/dev/twa/twa_freebsd.c @@ -196,7 +196,7 @@ twa_probe(device_t dev) TWA_DRIVER_VERSION_STRING); first_ctlr = 0; } - return(0); + return(BUS_PROBE_DEFAULT); } return(ENXIO); } |