diff options
author | Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi> | 2017-10-10 21:59:43 +0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-10-16 09:42:51 -0400 |
commit | 137aefba0319eaa69de0707dce01d62339158d4d (patch) | |
tree | 3ed1d6bf3740e56a2f823bddf0aa2de15c604128 /common/image-fdt.c | |
parent | c68c03f52badc90951dbf8a054c0e500e04bf365 (diff) | |
download | u-boot-137aefba0319eaa69de0707dce01d62339158d4d.tar.gz |
common: Remove genimg_get_image()
Removal of the legacy DataFlash code turned genimg_get_image() into a
no-op. Drop all calls to it and the function itself.
Signed-off-by: Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi>
Diffstat (limited to 'common/image-fdt.c')
-rw-r--r-- | common/image-fdt.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/common/image-fdt.c b/common/image-fdt.c index a2ef409836..1e946467e3 100644 --- a/common/image-fdt.c +++ b/common/image-fdt.c @@ -294,9 +294,6 @@ int boot_get_fdt(int flag, int argc, char * const argv[], uint8_t arch, debug("## Checking for 'FDT'/'FDT Image' at %08lx\n", fdt_addr); - /* copy from dataflash if needed */ - fdt_addr = genimg_get_image(fdt_addr); - /* * Check if there is an FDT image at the * address provided in the second bootm argument |