From b27217e3ad7886e73ac068401795b33061a66c6d Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Fri, 5 Jul 2024 20:03:35 +0200 Subject: [PATCH] ECAM: Spell "ACPI" in capitals in debug messages --- lib/ecam.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ecam.c b/lib/ecam.c index f953e10..b9f8cb6 100644 --- a/lib/ecam.c +++ b/lib/ecam.c @@ -464,7 +464,7 @@ find_mcfg(struct pci_access *a, const char *acpimcfg, const char *efisystab, int #ifdef PCI_OS_WINDOWS if (strcmp(acpimcfg, "GetSystemFirmwareTable()") == 0) { - a->debug("reading acpi mcfg via GetSystemFirmwareTable()..."); + a->debug("reading ACPI mcfg via GetSystemFirmwareTable()..."); mcfg = get_system_firmware_table_acpi_mcfg(a); if (mcfg) return mcfg; @@ -481,7 +481,7 @@ find_mcfg(struct pci_access *a, const char *acpimcfg, const char *efisystab, int { path = mcfg_glob.gl_pathv[0]; #endif - a->debug("reading acpi mcfg file: %s...", path); + a->debug("reading ACPI mcfg file: %s...", path); mcfg_file = fopen(path, "rb"); #ifndef PCI_OS_WINDOWS globfree(&mcfg_glob); -- 2.39.2