diff options
| author | Gerald Van Baren <vanbaren@cideas.com> | 2008-06-10 22:15:58 -0400 | 
|---|---|---|
| committer | Gerald Van Baren <vanbaren@cideas.com> | 2008-06-10 22:23:23 -0400 | 
| commit | ae9e97fa96f643c8ba2b666b06a026cc8717eb00 (patch) | |
| tree | ec8e66306bc821bd3f4d61b44e0365ff77df5156 /common/fdt_support.c | |
| parent | e489b9c078e22b0d9e75f002cd2a1bd967e88f5e (diff) | |
| download | olio-uboot-2014.01-ae9e97fa96f643c8ba2b666b06a026cc8717eb00.tar.xz olio-uboot-2014.01-ae9e97fa96f643c8ba2b666b06a026cc8717eb00.zip | |
libfdt: Move the working_fdt pointer to cmd_fdt.c
The working_fdt pointer was declared in common/fdt_support.c but was
not used there.  Move it to common/cmd_fdt.c where it is used (it is
also used in lib_ppc/bootm.c).
Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
Diffstat (limited to 'common/fdt_support.c')
| -rw-r--r-- | common/fdt_support.c | 5 | 
1 files changed, 0 insertions, 5 deletions
| diff --git a/common/fdt_support.c b/common/fdt_support.c index e8aa3e981..e58b294ee 100644 --- a/common/fdt_support.c +++ b/common/fdt_support.c @@ -35,11 +35,6 @@   */  DECLARE_GLOBAL_DATA_PTR; -/* - * fdt points to our working device tree. - */ -struct fdt_header *working_fdt; -  /**   * fdt_find_and_setprop: Find a node and set it's property |