fdt: Rename setup_fdt() and make it prepare also
authorSimon Glass <sjg@chromium.org>
Sat, 28 Feb 2015 05:06:35 +0000 (22:06 -0700)
committerSimon Glass <sjg@chromium.org>
Thu, 23 Apr 2015 15:05:53 +0000 (09:05 -0600)
There is little reason to split these two functions. Bring them together
which simplifies the init sequence.

Signed-off-by: Simon Glass <sjg@chromium.org>
common/board_f.c
include/fdtdec.h
lib/fdtdec.c

index 656c24940d72e47a5408a7bdc3df16bea42d050e..90f3b8847f27389c1a197d987c84b1a9f4943e1c 100644 (file)
@@ -762,7 +762,7 @@ static init_fnc_t init_sequence_f[] = {
 #endif
        setup_mon_len,
 #ifdef CONFIG_OF_CONTROL
-       setup_fdt,
+       fdtdec_setup,
 #endif
 #ifdef CONFIG_TRACE
        trace_early_init,
@@ -774,9 +774,6 @@ static init_fnc_t init_sequence_f[] = {
 #endif
        arch_cpu_init,          /* basic arch cpu dependent setup */
        mark_bootstage,
-#ifdef CONFIG_OF_CONTROL
-       fdtdec_check_fdt,
-#endif
        initf_dm,
        arch_cpu_init_dm,
 #if defined(CONFIG_BOARD_EARLY_INIT_F)
index ea8a52602a5d6657aacc4c144b1e6d2a5c44e94c..0d3e6d9711dd964d14e306cc3ef23f86c46f1184 100644 (file)
@@ -797,6 +797,6 @@ int fdtdec_decode_memory_region(const void *blob, int node,
 /**
  * Set up the device tree ready for use
  */
-int setup_fdt(void);
+int fdtdec_setup(void);
 
 #endif
index d9dbc86164bd7e2e94f075248cf77fd594308660..80b897a21cd69a88ce5d3fe1398d23da11339f67 100644 (file)
@@ -1039,7 +1039,7 @@ int fdtdec_decode_memory_region(const void *blob, int config_node,
        return 0;
 }
 
-int setup_fdt(void)
+int fdtdec_setup(void)
 {
 #ifdef CONFIG_OF_CONTROL
 # ifdef CONFIG_OF_EMBED
@@ -1065,7 +1065,7 @@ int setup_fdt(void)
                                                (uintptr_t)gd->fdt_blob);
 # endif
 #endif
-       return 0;
+       return fdtdec_prepare_fdt();
 }
 
 #endif /* !USE_HOSTCC */