diff options
author | Joel Kitching <kitching@google.com> | 2018-03-08 12:09:32 +0800 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2018-03-14 04:33:53 +0000 |
commit | 3ab36b84f721009e14c230c370bd90e05d47856c (patch) | |
tree | 0629d263728f3e6e32dbd26921b20eb41cb7bf0d /src/arch/x86 | |
parent | 36c926d86ce7f45b5f0967dd054a7e8247aab193 (diff) |
acpi: update 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>
Reviewed-on: https://review.coreboot.org/25042
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/arch/x86')
-rw-r--r-- | src/arch/x86/acpigen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/acpigen.c b/src/arch/x86/acpigen.c index bdb73bfac6..fc6cc66f8f 100644 --- a/src/arch/x86/acpigen.c +++ b/src/arch/x86/acpigen.c @@ -223,7 +223,7 @@ void acpigen_write_string(const char *string) 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); |