diff options
author | York Sun <yorksun@freescale.com> | 2013-12-03 21:16:59 (GMT) |
---|---|---|
committer | York Sun <yorksun@freescale.com> | 2013-12-04 22:55:05 (GMT) |
commit | 1df99080cb6dea9216ee1925f03bd7cc35dc34c7 (patch) | |
tree | 48938565794d90a8bf3fa29c19bd7ce9d38c3982 /arch/powerpc | |
parent | 085db5ca3aa306d2002c765191ce1a73fa962553 (diff) | |
download | u-boot-fsl-qoriq-1df99080cb6dea9216ee1925f03bd7cc35dc34c7.tar.xz |
powerpc/mpc8349: Use generic mpc85xx DDR driver
MPC8349 has been using mpc85xx DDR driver through a symbolic link to
mpc85xx_ddr_gen2.c. After consolidating the drivers to a single set
under driver/ddr/fsl/, the link is replaced by referring driver
directly. We now can simply enable the macro and use the driver.
Other mpc83xx SoCs still use their own driver.
Signed-off-by: York Sun <yorksun@freescale.com>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/cpu/mpc83xx/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/powerpc/cpu/mpc83xx/Makefile b/arch/powerpc/cpu/mpc83xx/Makefile index c345dd6..cf91162 100644 --- a/arch/powerpc/cpu/mpc83xx/Makefile +++ b/arch/powerpc/cpu/mpc83xx/Makefile @@ -38,9 +38,7 @@ obj-$(CONFIG_OF_LIBFDT) += fdt.o # Stub implementations of cache management functions for USB obj-y += cache.o -ifdef CONFIG_SYS_FSL_DDR2 -obj-$(CONFIG_MPC8349) += $(SRCTREE)/drivers/ddr/fsl/mpc85xx_ddr_gen2.o -else +ifndef CONFIG_SYS_FSL_DDRC_GEN2 obj-y += spd_sdram.o endif obj-$(CONFIG_SYS_FSL_DDR2) += law.o |