1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-01 00:32:04 +02:00

cmd_fdt: Actually fix fdt command in sandbox

Commit 90bac29a76 claims to fix this bug
that was introduced in commit a92fd6577e
but doesn't actually make the change that the commit message describes.

Actually fix the bug this time.

Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
Acked-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Joe Hershberger
2015-02-04 21:56:53 -06:00
committed by Simon Glass
parent 5745f8c4fd
commit 90fbee3e40
4 changed files with 7 additions and 7 deletions

View File

@@ -233,7 +233,7 @@ static int bootm_find_fdt(int flag, int argc, char * const argv[])
return 1;
}
set_working_fdt_addr(images.ft_addr);
set_working_fdt_addr((ulong)images.ft_addr);
return 0;
}