diff options
author | Vikas Manocha | 2017-03-27 13:02:44 -0700 |
---|---|---|
committer | Tom Rini | 2017-04-08 09:26:50 -0400 |
commit | bf4d0495d2abe0bf0f0dc05bd519ce1bc749f5f4 (patch) | |
tree | f3dadfe95590fb4986bc92212a9301cb3b2d73c3 /arch/arm/lib/Makefile | |
parent | 3f66149d9fb41527ed70a8e0613489e95391b0ff (diff) |
armv7m: add instruction & data cache support
This patch adds armv7m instruction & data cache support.
Signed-off-by: Vikas Manocha <vikas.manocha@st.com>
cc: Christophe KERELLO <christophe.kerello@st.com>
Diffstat (limited to 'arch/arm/lib/Makefile')
-rw-r--r-- | arch/arm/lib/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/lib/Makefile b/arch/arm/lib/Makefile index b95e10599b6..6e96cfb0c5d 100644 --- a/arch/arm/lib/Makefile +++ b/arch/arm/lib/Makefile @@ -55,8 +55,10 @@ endif obj-y += cache.o ifndef CONFIG_ARM64 +ifndef CONFIG_CPU_V7M obj-y += cache-cp15.o endif +endif obj-y += psci-dt.o |