summaryrefslogtreecommitdiff
path: root/arch/x86/lib/init_helpers.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2014-11-10 18:00:25 -0700
committerSimon Glass <sjg@chromium.org>2014-11-21 07:24:12 +0100
commit003504b6fe2296f581191b77fd2f1e98c4f4720c (patch)
tree8363844010b5206a14d16d0e0cc7522de3093ea6 /arch/x86/lib/init_helpers.c
parent21b9b14b49b742c3ee70f819aab3918f517bf0b8 (diff)
downloadu-boot-imx-003504b6fe2296f581191b77fd2f1e98c4f4720c.zip
u-boot-imx-003504b6fe2296f581191b77fd2f1e98c4f4720c.tar.gz
u-boot-imx-003504b6fe2296f581191b77fd2f1e98c4f4720c.tar.bz2
x86: Remove unnecessary find_fdt(), prepare_fdt() functions
These are no-longer needed so drop them. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch/x86/lib/init_helpers.c')
-rw-r--r--arch/x86/lib/init_helpers.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/arch/x86/lib/init_helpers.c b/arch/x86/lib/init_helpers.c
index b5d937f..be4eb12 100644
--- a/arch/x86/lib/init_helpers.c
+++ b/arch/x86/lib/init_helpers.c
@@ -87,30 +87,3 @@ int init_func_spi(void)
puts("ready\n");
return 0;
}
-
-int find_fdt(void)
-{
-#ifdef CONFIG_OF_EMBED
- /* Get a pointer to the FDT */
- gd->fdt_blob = __dtb_dt_begin;
-#elif defined CONFIG_OF_SEPARATE
- /* FDT is at end of image */
- gd->fdt_blob = (ulong *)&_end;
-#endif
- /* Allow the early environment to override the fdt address */
- gd->fdt_blob = (void *)getenv_ulong("fdtcontroladdr", 16,
- (uintptr_t)gd->fdt_blob);
-
- return 0;
-}
-
-int prepare_fdt(void)
-{
- /* For now, put this check after the console is ready */
- if (fdtdec_prepare_fdt()) {
- panic("** CONFIG_OF_CONTROL defined but no FDT - please see "
- "doc/README.fdt-control");
- }
-
- return 0;
-}