summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2023-05-15 19:25:23 +0200
committerFelix Held <felix-coreboot@felixheld.de>2023-05-16 21:25:34 +0000
commit48b038961efec0b9b3b787d595b7464529190e0c (patch)
tree5fb00bd0deafb2fc86a2270162b8fcc9c18f7542
parent3cf05b58e5a675c0dd7efd57ab0ae082279f4e55 (diff)
downloadcoreboot-48b038961efec0b9b3b787d595b7464529190e0c.tar.gz
cpu/amd/pi/00730f01/Kconfig: use hexadecimal CPU number in ACPI
To match the rest of coreboot, also change this ACPI_CPU_STRING Kconfig setting to use hexadecimal CPU numbers for the ACPI CPU objects. Since this SoC has a maximum of 4 cores, this change will make no difference in the runtime behavior. Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: I58f9c4672f34de0defafc300d2d291f4ad6196ff Reviewed-on: https://review.coreboot.org/c/coreboot/+/75251 Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-by: Matt DeVillier <matt.devillier@amd.corp-partner.google.com> Reviewed-by: Fred Reitberger <reitbergerfred@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r--src/cpu/amd/pi/00730F01/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/amd/pi/00730F01/Kconfig b/src/cpu/amd/pi/00730F01/Kconfig
index af56c96ad7..1fffe37c52 100644
--- a/src/cpu/amd/pi/00730F01/Kconfig
+++ b/src/cpu/amd/pi/00730F01/Kconfig
@@ -10,6 +10,6 @@ if CPU_AMD_PI_00730F01
config ACPI_CPU_STRING
string
- default "P%03d"
+ default "P%03X"
endif # CPU_AMD_PI_00730F01