diff options
| author | Kumar Gala <galak@kernel.crashing.org> | 2007-11-21 08:49:50 -0600 | 
|---|---|---|
| committer | Kumar Gala <galak@kernel.crashing.org> | 2007-11-21 08:49:50 -0600 | 
| commit | ed1353d74b9ce8a7fcd660570b848a184d614b5f (patch) | |
| tree | 833d87a1235fd3323eb0bb563aaa82e863c7b9fa /libfdt/fdt.c | |
| parent | 4a43719a7738712811d822ca8125427b27a55cdc (diff) | |
| download | olio-uboot-2014.01-ed1353d74b9ce8a7fcd660570b848a184d614b5f.tar.xz olio-uboot-2014.01-ed1353d74b9ce8a7fcd660570b848a184d614b5f.zip | |
[BUILD] conditionally compile libfdt/*.c in libfdt/Makefile
Modify libfdt/Makefile to conditionally compile the *.c files based
on the board config.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'libfdt/fdt.c')
| -rw-r--r-- | libfdt/fdt.c | 5 | 
1 files changed, 0 insertions, 5 deletions
| diff --git a/libfdt/fdt.c b/libfdt/fdt.c index 1ee67ad19..212b83838 100644 --- a/libfdt/fdt.c +++ b/libfdt/fdt.c @@ -16,9 +16,6 @@   * License along with this library; if not, write to the Free Software   * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA   */ -#include "config.h" -#if CONFIG_OF_LIBFDT -  #include "libfdt_env.h"  #include <fdt.h> @@ -86,5 +83,3 @@ int fdt_move(const void *fdt, void *buf, int bufsize)  	memmove(buf, fdt, fdt_totalsize(fdt));  	return 0;  } - -#endif /* CONFIG_OF_LIBFDT */ |