diff options
author | Tom Rini <trini@konsulko.com> | 2024-01-08 09:11:53 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-01-08 09:11:53 -0500 |
commit | f28a77589e7505535a4eebdc7269df98f67dbe68 (patch) | |
tree | 69bb9a116ba839ffc101d1ae923485401332294f /lib/acpi/acpi_table.c | |
parent | c2c598e87cfe56f5991730762c00733c5aa9a994 (diff) | |
parent | 8c4b37ce97c27ad4e7f83b028d4cd1396a51a36f (diff) |
Merge tag 'dm-next-7jan23' of https://source.denx.de/u-boot/custodians/u-boot-dm into next
switch to SMBIOS3 tables
allow devicetree from bloblist
ACPI support for ARM and RISC-V
Diffstat (limited to 'lib/acpi/acpi_table.c')
-rw-r--r-- | lib/acpi/acpi_table.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/acpi/acpi_table.c b/lib/acpi/acpi_table.c index e74522e997..39dd53ec40 100644 --- a/lib/acpi/acpi_table.c +++ b/lib/acpi/acpi_table.c @@ -167,7 +167,7 @@ int acpi_add_table(struct acpi_ctx *ctx, void *table) } /* Add table to the RSDT */ - rsdt->entry[i] = map_to_sysmem(table); + rsdt->entry[i] = nomap_to_sysmem(table); /* Fix RSDT length or the kernel will assume invalid entries */ rsdt->header.length = sizeof(struct acpi_table_header) + @@ -185,7 +185,7 @@ int acpi_add_table(struct acpi_ctx *ctx, void *table) xsdt = ctx->xsdt; /* Add table to the XSDT */ - xsdt->entry[i] = map_to_sysmem(table); + xsdt->entry[i] = nomap_to_sysmem(table); /* Fix XSDT length */ xsdt->header.length = sizeof(struct acpi_table_header) + |