summaryrefslogtreecommitdiff
path: root/arch/arm/cpu/armv7/omap-common/Makefile
diff options
context:
space:
mode:
authorSricharan <r.sricharan@ti.com>2011-11-15 14:49:58 (GMT)
committerAlbert ARIBAUD <albert.u.boot@aribaud.net>2011-11-15 21:25:50 (GMT)
commit2e5ba489284a28990530a5c0e86a4c361e88dbe5 (patch)
tree54cef4eea4852886dc4c233f8938de2ebd7f2e34 /arch/arm/cpu/armv7/omap-common/Makefile
parent508a58fa8ef0eab5c9b0b4285a73b3b91420092d (diff)
downloadu-boot-2e5ba489284a28990530a5c0e86a4c361e88dbe5.tar.xz
omap5: clocks: Add clocks support for omap5 platform.
Adding the correct configurations required for dplls, clocks, for omap5 Soc. Also changes are done to retain some part of the code common for OMAP4/5 and move only the remaining to the Soc specific directories. Signed-off-by: sricharan <r.sricharan@ti.com> Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
Diffstat (limited to 'arch/arm/cpu/armv7/omap-common/Makefile')
-rw-r--r--arch/arm/cpu/armv7/omap-common/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/cpu/armv7/omap-common/Makefile b/arch/arm/cpu/armv7/omap-common/Makefile
index ea2545d..a684611 100644
--- a/arch/arm/cpu/armv7/omap-common/Makefile
+++ b/arch/arm/cpu/armv7/omap-common/Makefile
@@ -33,7 +33,7 @@ ifdef CONFIG_OMAP
COBJS += gpio.o
endif
-ifdef CONFIG_OMAP44XX
+ifneq ($(CONFIG_OMAP44XX)$(CONFIG_OMAP54XX),)
COBJS += hwinit-common.o
COBJS += clocks-common.o
COBJS += emif-common.o
@@ -51,7 +51,7 @@ endif
endif
ifndef CONFIG_SPL_BUILD
-ifdef CONFIG_OMAP44XX
+ifneq ($(CONFIG_OMAP44XX)$(CONFIG_OMAP54XX),)
COBJS += mem-common.o
endif
endif