diff options
author | ian <ian@FreeBSD.org> | 2014-05-14 01:35:43 +0000 |
---|---|---|
committer | ian <ian@FreeBSD.org> | 2014-05-14 01:35:43 +0000 |
commit | ae2bbb5100a71ca9712eebe64ce4a80b680f030b (patch) | |
tree | 1c4d065284f91caf3dc2c3a2e356b290feec78db /sys/dev/xen/console/console.c | |
parent | 147aa314a7ea59fab69a92349cee312e49cae2bb (diff) | |
download | FreeBSD-src-ae2bbb5100a71ca9712eebe64ce4a80b680f030b.zip FreeBSD-src-ae2bbb5100a71ca9712eebe64ce4a80b680f030b.tar.gz |
MFC r257334, r257336, r257337, r257338, r257341, r257342, r257343, r257370,
r257368, r257416
Hints-only devices should return BUS_PROBE_NOWILDCARD from their probe
methods.
Diffstat (limited to 'sys/dev/xen/console/console.c')
-rw-r--r-- | sys/dev/xen/console/console.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/xen/console/console.c b/sys/dev/xen/console/console.c index 52f5fe1..dfabd70 100644 --- a/sys/dev/xen/console/console.c +++ b/sys/dev/xen/console/console.c @@ -226,7 +226,7 @@ static int xc_probe(device_t dev) { - return (0); + return (BUS_PROBE_NOWILDCARD); } static int |