summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorHeinrich Schuchardt <[email protected]>2025-10-31 20:52:53 +0100
committerTom Rini <[email protected]>2025-11-06 08:30:33 -0600
commitb790f31752d7650d5f557509f17b1396f0cc1f70 (patch)
treed9f52ff5c505d3b1e405bd8a521ccf5412371a4c /lib
parent59f6025e5a6e46c9cf8b94cd6958bae78cd15d13 (diff)
acpi: use U-Boot ACPI vendor ID
The U-Boot project has been assigned the vendor ID 'UBOO' [1]. Use this vendor ID and our release version in the ACPI table headers. [1] ACPI ID Registry https://uefi.org/ACPI_ID_List Signed-off-by: Heinrich Schuchardt <[email protected]> Reviewed-by: Bin Meng <[email protected]>
Diffstat (limited to 'lib')
-rw-r--r--lib/acpi/acpi_table.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/acpi/acpi_table.c b/lib/acpi/acpi_table.c
index 43b71182133..52b05efd62d 100644
--- a/lib/acpi/acpi_table.c
+++ b/lib/acpi/acpi_table.c
@@ -134,8 +134,8 @@ void acpi_fill_header(struct acpi_table_header *header, char *signature)
memcpy(header->oem_id, OEM_ID, 6);
memcpy(header->oem_table_id, OEM_TABLE_ID, 8);
header->oem_revision = OEM_REVISION;
- memcpy(header->creator_id, ASLC_ID, 4);
- header->creator_revision = ASL_REVISION;
+ memcpy(header->creator_id, ACPI_CREATOR_ID, 4);
+ header->creator_revision = ACPI_CREATOR_REVISION;
}
void acpi_align(struct acpi_ctx *ctx)
@@ -248,7 +248,7 @@ int acpi_write_fadt(struct acpi_ctx *ctx, const struct acpi_writer *entry)
header->revision = acpi_get_table_revision(ACPITAB_FADT);
memcpy(header->oem_id, OEM_ID, 6);
memcpy(header->oem_table_id, OEM_TABLE_ID, 8);
- memcpy(header->creator_id, ASLC_ID, 4);
+ memcpy(header->creator_id, ACPI_CREATOR_ID, 4);
header->creator_revision = 1;
fadt->minor_revision = 2;