git: 732b69c9f9c8 - main - acpi: Make nexus_acpi quiet on amd64 and i386

Mark Johnston markj at FreeBSD.org
Fri Mar 5 17:54:14 UTC 2021


The branch main has been updated by markj:

URL: https://cgit.FreeBSD.org/src/commit/?id=732b69c9f9c84408e7e680a93ab91ce76ffef2ce

commit 732b69c9f9c84408e7e680a93ab91ce76ffef2ce
Author:     Mark Johnston <markj at FreeBSD.org>
AuthorDate: 2021-03-05 17:53:30 +0000
Commit:     Mark Johnston <markj at FreeBSD.org>
CommitDate: 2021-03-05 17:54:00 +0000

    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
---
 sys/amd64/acpica/acpi_machdep.c | 2 +-
 sys/i386/acpica/acpi_machdep.c  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/amd64/acpica/acpi_machdep.c b/sys/amd64/acpica/acpi_machdep.c
index 60e470d14cbb..7d8b303f6f16 100644
--- a/sys/amd64/acpica/acpi_machdep.c
+++ b/sys/amd64/acpica/acpi_machdep.c
@@ -262,7 +262,7 @@ nexus_acpi_probe(device_t dev)
 	error = acpi_identify();
 	if (error)
 		return (error);
-
+	device_quiet(dev);
 	return (BUS_PROBE_DEFAULT);
 }
 
diff --git a/sys/i386/acpica/acpi_machdep.c b/sys/i386/acpica/acpi_machdep.c
index 63efe4f520fd..e8810ac88009 100644
--- a/sys/i386/acpica/acpi_machdep.c
+++ b/sys/i386/acpica/acpi_machdep.c
@@ -280,7 +280,7 @@ nexus_acpi_probe(device_t dev)
 	error = acpi_identify();
 	if (error)
 		return (error);
-
+	device_quiet(dev);
 	return (BUS_PROBE_DEFAULT);
 }
 


More information about the dev-commits-src-all mailing list