summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/soc/intel/meteorlake/chip.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/soc/intel/meteorlake/chip.c b/src/soc/intel/meteorlake/chip.c
index 80b3cdb27e..60f85ba983 100644
--- a/src/soc/intel/meteorlake/chip.c
+++ b/src/soc/intel/meteorlake/chip.c
@@ -113,7 +113,8 @@ const char *soc_acpi_name(const struct device *dev)
case PCI_DEVFN_SMBUS: return "SBUS";
case PCI_DEVFN_GBE: return "GLAN";
}
- printk(BIOS_DEBUG, "dev->path.devfn=%x\n", dev->path.pci.devfn);
+ printk(BIOS_DEBUG, "Missing ACPI Name for PCI: 00:%02x.%01x\n",
+ PCI_SLOT(dev->path.pci.devfn), PCI_FUNC(dev->path.pci.devfn));
return NULL;
}
#endif