Some nexus devices add wildcard children. Since fdtbus_probe returned
BUS_PROBE_DEFAULT, it would attach to them all, producing both many fdtbus instances and preventing other devices from attaching. Instead return BUS_PROBE_NOWILDCARD, which exists for exactly this purpose.
This commit is contained in:
parent
228f09b3ef
commit
457639351b
@ -161,7 +161,7 @@ fdtbus_probe(device_t dev)
|
||||
device_set_desc(dev, "FDT main bus");
|
||||
if (!bootverbose)
|
||||
device_quiet(dev);
|
||||
return (BUS_PROBE_DEFAULT);
|
||||
return (BUS_PROBE_NOWILDCARD);
|
||||
}
|
||||
|
||||
static int
|
||||
|
Loading…
Reference in New Issue
Block a user