diff mbox series

[U-Boot,V2,2/2] Revert "Revert "efi_loader: efi_allocate_pages is too restrictive""

Message ID 20180829213426.18895-2-swarren@wwwdotorg.org
State Superseded
Delegated to: Alexander Graf
Headers show
Series [U-Boot,V2,1/2] ARM: tegra: reserve unmapped RAM so EFI doesn't use it | expand

Commit Message

Stephen Warren Aug. 29, 2018, 9:34 p.m. UTC
From: Stephen Warren <swarren@nvidia.com>

This reverts commit ccfc78b820e5e431c5bd73b072e7536a972e1710.

Now that the underlying issue is fixed, we can revert the revert and hence
restore the original EFI code.

Signed-off-by: Stephen Warren <swarren@nvidia.com>
---
v2: No change.
---
 lib/efi_loader/efi_memory.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/lib/efi_loader/efi_memory.c b/lib/efi_loader/efi_memory.c
index e2b40aa85b5a..e902d5a280bb 100644
--- a/lib/efi_loader/efi_memory.c
+++ b/lib/efi_loader/efi_memory.c
@@ -304,7 +304,7 @@  efi_status_t efi_allocate_pages(int type, int memory_type,
 	switch (type) {
 	case EFI_ALLOCATE_ANY_PAGES:
 		/* Any page */
-		addr = efi_find_free_memory(len, gd->start_addr_sp);
+		addr = efi_find_free_memory(len, -1ULL);
 		if (!addr) {
 			r = EFI_NOT_FOUND;
 			break;