diff options
author | Tom Rini <trini@konsulko.com> | 2025-04-03 07:31:28 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-04-03 07:31:28 -0600 |
commit | 82b69fc4224432d5aefa7ca750d950374cbc7fb2 (patch) | |
tree | c496ba7267c7376b6950c5beb4305a643a407816 /drivers/misc/qfw_acpi.c | |
parent | ce09def8abc3e80e3f9a525b4c050aa4c5cd629b (diff) | |
parent | 7871285a0a8fb6726ea7537c4f592e117f93768b (diff) |
Merge tag 'efi-2025-04-rc6' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request efi-2025-04-rc6
CI:
* https://source.denx.de/u-boot/custodians/u-boot-efi/-/pipelines/25491
Documentation:
* correct references to overlay-fdt-boot.txt
* build: docker: Fix code highlighting syntax
* build: docker: Use code-block for syntax highlighting
* Fix typo bootfloe to bootflow
UEFI:
* Correct the size of the AcpiReclaimMemory region for ACPI tables
when using QFW
Diffstat (limited to 'drivers/misc/qfw_acpi.c')
-rw-r--r-- | drivers/misc/qfw_acpi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/qfw_acpi.c b/drivers/misc/qfw_acpi.c index 0d0cf764689..77cebae5e3f 100644 --- a/drivers/misc/qfw_acpi.c +++ b/drivers/misc/qfw_acpi.c @@ -305,7 +305,7 @@ static int evt_write_acpi_tables(void) /* Generate ACPI tables */ end = write_acpi_tables(addr); gd->arch.table_start = addr; - gd->arch.table_end = addr; + gd->arch.table_end = end; return 0; } |