]> www.infradead.org Git - users/willy/xarray.git/commitdiff
PCI/ACPI: Tone down missing MCFG message
authorJeremy Linton <jeremy.linton@arm.com>
Tue, 8 Sep 2020 21:03:59 +0000 (16:03 -0500)
committerBjorn Helgaas <bhelgaas@google.com>
Tue, 15 Sep 2020 15:54:24 +0000 (10:54 -0500)
MCFG is an optional ACPI table.  Given there are machines without PCI (or
it is hidden) we have been receiving queries/complaints about what this
message means given it's being presented as an error.

Reduce the message severity.  The ACPI table list printed at boot will
continue to provide another way to detect when the table is missing.

Link: https://lore.kernel.org/r/20200908210359.569294-1-jeremy.linton@arm.com
Signed-off-by: Jeremy Linton <jeremy.linton@arm.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Hanjun Guo <guohanjun@huawei.com>
drivers/acpi/pci_mcfg.c

index 54b36b7ad47d95269e445cc11eb47039962fdc47..c8ef3bb5aa00529600850eaf03ce99ba5b790114 100644 (file)
@@ -280,5 +280,5 @@ void __init pci_mmcfg_late_init(void)
 {
        int err = acpi_table_parse(ACPI_SIG_MCFG, pci_mcfg_parse);
        if (err)
-               pr_err("Failed to parse MCFG (%d)\n", err);
+               pr_debug("Failed to parse MCFG (%d)\n", err);
 }