mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-21 11:13:30 +00:00
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:
parent
251a32b5b2
commit
7d91f528a6
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=347242
@ -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");
|
||||
|
Loading…
Reference in New Issue
Block a user