svn commit: r265953 - stable/10/sys/dev/fdt
Ian Lepore
ian at FreeBSD.org
Tue May 13 16:52:22 UTC 2014
Author: ian
Date: Tue May 13 16:52:21 2014
New Revision: 265953
URL: http://svnweb.freebsd.org/changeset/base/265953
Log:
MFC r256798: Return BUS_PROBE_NOWILDCARD from fdtbus_probe.
Modified:
stable/10/sys/dev/fdt/fdtbus.c
Modified: stable/10/sys/dev/fdt/fdtbus.c
==============================================================================
--- stable/10/sys/dev/fdt/fdtbus.c Tue May 13 16:50:10 2014 (r265952)
+++ stable/10/sys/dev/fdt/fdtbus.c Tue May 13 16:52:21 2014 (r265953)
@@ -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
More information about the svn-src-stable
mailing list