summaryrefslogtreecommitdiff
path: root/src/soc
diff options
context:
space:
mode:
authorRaul E Rangel <rrangel@chromium.org>2021-05-10 15:04:57 -0600
committerFelix Held <felix-coreboot@felixheld.de>2021-05-12 00:44:35 +0000
commit556412b207e85f56d7e7fe8bae18a78381b5342e (patch)
tree9377b4b801261bb9c84d0c2a73614ce9bd3ed7c5 /src/soc
parente4f831786c7b636830f8092bca07fb19b79978a9 (diff)
downloadcoreboot-556412b207e85f56d7e7fe8bae18a78381b5342e.tar.xz
soc/amd/common/block/pci: Capitalize PCI ACPI names
Lowercase characters are not valid ACPI identifiers. BUG=b:184766519 TEST=Boot picasso to OS and verify ACPI errors are no longer printed. Signed-off-by: Raul E Rangel <rrangel@chromium.org> Change-Id: I75aca67f4607e97ced8ac00ac68e51c359aff944 Reviewed-on: https://review.coreboot.org/c/coreboot/+/54027 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de> Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com> Reviewed-by: Jason Glenesk <jason.glenesk@gmail.com>
Diffstat (limited to 'src/soc')
-rw-r--r--src/soc/amd/common/block/pci/pcie_gpp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/amd/common/block/pci/pcie_gpp.c b/src/soc/amd/common/block/pci/pcie_gpp.c
index 58c776146f..a3ac1cf5e4 100644
--- a/src/soc/amd/common/block/pci/pcie_gpp.c
+++ b/src/soc/amd/common/block/pci/pcie_gpp.c
@@ -22,7 +22,7 @@ static const char *pcie_gpp_acpi_name(const struct device *dev)
return NULL;
name = malloc(ACPI_NAME_BUFFER_SIZE);
- snprintf(name, ACPI_NAME_BUFFER_SIZE, "GP%02x", dev->path.pci.devfn);
+ snprintf(name, ACPI_NAME_BUFFER_SIZE, "GP%02X", dev->path.pci.devfn);
name[4] = '\0';
return name;