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/base.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/base.c')
-rw-r--r-- | lib/acpi/base.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/acpi/base.c b/lib/acpi/base.c index 07b53e0c56..8b6af2bc43 100644 --- a/lib/acpi/base.c +++ b/lib/acpi/base.c @@ -24,10 +24,10 @@ void acpi_write_rsdp(struct acpi_rsdp *rsdp, struct acpi_rsdt *rsdt, memcpy(rsdp->oem_id, OEM_ID, 6); if (rsdt) - rsdp->rsdt_address = map_to_sysmem(rsdt); + rsdp->rsdt_address = nomap_to_sysmem(rsdt); if (xsdt) - rsdp->xsdt_address = map_to_sysmem(xsdt); + rsdp->xsdt_address = nomap_to_sysmem(xsdt); rsdp->length = sizeof(struct acpi_rsdp); rsdp->revision = ACPI_RSDP_REV_ACPI_2_0; |