diff options
author | Anton Vorontsov <avorontsov@ru.mvista.com> | 2008-03-24 17:40:27 +0300 |
---|---|---|
committer | Kim Phillips <kim.phillips@freescale.com> | 2008-03-25 19:16:44 -0500 |
commit | a796cdf9c377cb4e5d61d1079a296608f8fbd903 (patch) | |
tree | ae441e8d22b6d3d6f2b99c1e18add7b65d1cab3a /cpu/mpc83xx/fdt.c | |
parent | 46a3aeea73c13ab04ebf7a8739afb87ac5da94a3 (diff) | |
download | u-boot-a796cdf9c377cb4e5d61d1079a296608f8fbd903.tar.gz u-boot-a796cdf9c377cb4e5d61d1079a296608f8fbd903.tar.xz u-boot-a796cdf9c377cb4e5d61d1079a296608f8fbd903.zip |
83xx: split COBJS onto separate lines
..plus get rid of some #ifdefs in the .c files.
Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
Diffstat (limited to 'cpu/mpc83xx/fdt.c')
-rw-r--r-- | cpu/mpc83xx/fdt.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/cpu/mpc83xx/fdt.c b/cpu/mpc83xx/fdt.c index 6f55932da2..d3fd78e9f5 100644 --- a/cpu/mpc83xx/fdt.c +++ b/cpu/mpc83xx/fdt.c @@ -24,9 +24,6 @@ */ #include <common.h> - -#if defined(CONFIG_OF_LIBFDT) - #include <libfdt.h> #include <fdt_support.h> @@ -68,4 +65,3 @@ void ft_cpu_setup(void *blob, bd_t *bd) fdt_fixup_memory(blob, (u64)bd->bi_memstart, (u64)bd->bi_memsize); } -#endif /* CONFIG_OF_LIBFDT */ |