summaryrefslogtreecommitdiffstats
path: root/sys/mips/malta/gt.c
diff options
context:
space:
mode:
authornwhitehorn <nwhitehorn@FreeBSD.org>2013-10-29 14:07:31 +0000
committernwhitehorn <nwhitehorn@FreeBSD.org>2013-10-29 14:07:31 +0000
commite0788b09853d3092712fd53450e52bd4088d52f1 (patch)
treec757cb3c0859ddb79a3f9384a5a15ebb9b3ed6ce /sys/mips/malta/gt.c
parent17b5b0dc5e28ba43deca6072e8bd9498697c02b8 (diff)
downloadFreeBSD-src-e0788b09853d3092712fd53450e52bd4088d52f1.zip
FreeBSD-src-e0788b09853d3092712fd53450e52bd4088d52f1.tar.gz
Devices that rely on hints or identify routines for discovery need to
return BUS_PROBE_NOWILDCARD from their probe routines to avoid claiming wildcard devices on their parent bus. Do a sweep through the MIPS tree. MFC after: 2 weeks
Diffstat (limited to 'sys/mips/malta/gt.c')
-rw-r--r--sys/mips/malta/gt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/mips/malta/gt.c b/sys/mips/malta/gt.c
index ce320c9..b9cff7d 100644
--- a/sys/mips/malta/gt.c
+++ b/sys/mips/malta/gt.c
@@ -51,7 +51,7 @@ static int
gt_probe(device_t dev)
{
device_set_desc(dev, "GT64120 chip");
- return (0);
+ return (BUS_PROBE_NOWILDCARD);
}
static void
OpenPOWER on IntegriCloud