acpi: Make nexus_acpi quiet on amd64 and i386

Otherwise during attach newbus prints "nexus0", which is not very
useful.

The generic nexus device is already quiet, as is nexus_acpi on arm64.

MFC after:	1 week
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Mark Johnston 2021-03-05 12:53:30 -05:00
parent 9a13d9dcee
commit 732b69c9f9
2 changed files with 2 additions and 2 deletions

View File

@ -262,7 +262,7 @@ nexus_acpi_probe(device_t dev)
error = acpi_identify();
if (error)
return (error);
device_quiet(dev);
return (BUS_PROBE_DEFAULT);
}

View File

@ -280,7 +280,7 @@ nexus_acpi_probe(device_t dev)
error = acpi_identify();
if (error)
return (error);
device_quiet(dev);
return (BUS_PROBE_DEFAULT);
}