diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2013-11-11 14:36:06 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-11-17 14:11:33 -0500 |
commit | 5cdee2d41ad4a1a351d50dc7af6d7ff3db549006 (patch) | |
tree | 6ace5843ec54b415ad47d546202082d8f73ee66c /arch | |
parent | c64c5aa56ab0225a57d52152e76b6d17f751ae83 (diff) | |
download | u-boot-imx-5cdee2d41ad4a1a351d50dc7af6d7ff3db549006.zip u-boot-imx-5cdee2d41ad4a1a351d50dc7af6d7ff3db549006.tar.gz u-boot-imx-5cdee2d41ad4a1a351d50dc7af6d7ff3db549006.tar.bz2 |
powerpc: mpc83xx: Do not create a symbolic link to ddr-gen2.c
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/cpu/mpc83xx/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/arch/powerpc/cpu/mpc83xx/Makefile b/arch/powerpc/cpu/mpc83xx/Makefile index a501a3b..d3f7001 100644 --- a/arch/powerpc/cpu/mpc83xx/Makefile +++ b/arch/powerpc/cpu/mpc83xx/Makefile @@ -39,14 +39,10 @@ obj-$(CONFIG_OF_LIBFDT) += fdt.o obj-y += cache.o ifdef CONFIG_FSL_DDR2 -obj-$(CONFIG_MPC8349) += ddr-gen2.o -SRCS += $(obj)ddr-gen2.c +obj-$(CONFIG_MPC8349) += ../mpc85xx/ddr-gen2.o else obj-y += spd_sdram.o endif obj-$(CONFIG_FSL_DDR2) += law.o endif # not minimal - -$(obj)ddr-gen2.c: - ln -sf $(SRCTREE)/arch/powerpc/cpu/mpc85xx/ddr-gen2.c $(obj)ddr-gen2.c |