mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-28 08:35:38 +00:00
efi: Correct call to write_acpi_tables()
This must be passed a ulong, not a u64. Fix it to avoid LTO warnings on sandbox. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
0679cca507
commit
47642428ee
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ efi_status_t efi_acpi_register(void)
|
||||||
* a 4k-aligned address, so it is safe to assume that
|
* a 4k-aligned address, so it is safe to assume that
|
||||||
* write_acpi_tables() will write the table at that address.
|
* write_acpi_tables() will write the table at that address.
|
||||||
*/
|
*/
|
||||||
write_acpi_tables(acpi);
|
write_acpi_tables((ulong)acpi);
|
||||||
|
|
||||||
/* And expose them to our EFI payload */
|
/* And expose them to our EFI payload */
|
||||||
return efi_install_configuration_table(&acpi_guid,
|
return efi_install_configuration_table(&acpi_guid,
|
||||||
|
|
Loading…
Add table
Reference in a new issue