Joel Kitching has uploaded this change for review. ( https://review.coreboot.org/25042
Change subject: acpi: update a comment referencing ACPI ID ......................................................................
acpi: update a comment referencing ACPI ID
ACPI ID for coreboot is now "BOOT" according to CL:18521.
BUG=none BRANCH=master TEST=none
Change-Id: I802ce284001b186f6cd8839b8c303d49f42b4d38 Signed-off-by: Joel Kitching kitching@google.com --- M src/arch/x86/acpigen.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/42/25042/1
diff --git a/src/arch/x86/acpigen.c b/src/arch/x86/acpigen.c index bdb73bf..fc6cc66 100644 --- a/src/arch/x86/acpigen.c +++ b/src/arch/x86/acpigen.c @@ -223,7 +223,7 @@
void acpigen_write_coreboot_hid(enum coreboot_acpi_ids id) { - char hid[9]; /* CORExxxx */ + char hid[9]; /* BOOTxxxx */
snprintf(hid, sizeof(hid), "%.4s%04X", COREBOOT_ACPI_ID, id); acpigen_write_name_string("_HID", hid);