aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/amd64/acpica/acpi_machdep.c2
-rw-r--r--sys/i386/acpica/acpi_machdep.c2
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);
}