powerpc: hide innocuous printf behind bootverbose

NUMA associativity, and OFW node existence, is completely optional, and
shouldn't warn always.
This commit is contained in:
Justin Hibbits 2019-05-08 03:15:22 +00:00
parent 251a32b5b2
commit 7d91f528a6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=347242

View file

@ -393,7 +393,8 @@ ofw_pcibus_parse_associativity(device_t dev, int *domain)
int res;
if ((node = ofw_bus_get_node(dev)) == -1) {
device_printf(dev, "no ofw node found\n");
if (bootverbose)
device_printf(dev, "no ofw node found\n");
return (ENXIO);
}
res = OF_getproplen(node, "ibm,associativity");