diff options
author | Simon Glass <sjg@chromium.org> | 2015-02-27 22:06:35 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-04-23 09:05:53 -0600 |
commit | 0879361fd3bc33eb52bcfb2574a78f1e52a36429 (patch) | |
tree | 4b23d3c50eaee147f346fe59b34de9e313680603 /include/fdtdec.h | |
parent | b45122fdf5d314ef1f492b051fb104a7b48b8079 (diff) | |
download | u-boot-imx-0879361fd3bc33eb52bcfb2574a78f1e52a36429.zip u-boot-imx-0879361fd3bc33eb52bcfb2574a78f1e52a36429.tar.gz u-boot-imx-0879361fd3bc33eb52bcfb2574a78f1e52a36429.tar.bz2 |
fdt: Rename setup_fdt() and make it prepare also
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>
Diffstat (limited to 'include/fdtdec.h')
-rw-r--r-- | include/fdtdec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/fdtdec.h b/include/fdtdec.h index ea8a526..0d3e6d9 100644 --- a/include/fdtdec.h +++ b/include/fdtdec.h @@ -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 |