summaryrefslogtreecommitdiff
path: root/make_helpers
diff options
context:
space:
mode:
authorMatt Ma <matt.ma@spreadtrum.com>2017-11-22 19:31:28 +0800
committerMatt Ma <matt.ma@spreadtrum.com>2017-11-23 09:44:07 +0800
commit5f70d8de5b696a7b21284d96839caa981c8fdf30 (patch)
tree1329170af9812784b9625fdbcc243e3f70700b0e /make_helpers
parent203444c50066cad7aaddd3e36b0f9225bf95a865 (diff)
Replace macro ASM_ASSERTION with macro ENABLE_ASSERTIONS
This patch replaces the macro ASM_ASSERTION with the macro ENABLE_ASSERTIONS in ARM Cortex-A53/57/72 MPCore Processor related files. There is build error when ASM_ASSERTION is set to 1 and ENABLE_ASSERTIONS is set to 0 because function asm_assert in common/aarch32/debug.S is defined in the macro ENABLE_ASSERTIONS but is called with the macro ASM_ASSERTION. There is also the indication to use ENABLE_ASSERTIONS but not ASM_ASSERTION in the Makefile. Signed-off-by: Matt Ma <matt.ma@spreadtrum.com>
Diffstat (limited to 'make_helpers')
-rw-r--r--make_helpers/defaults.mk3
1 files changed, 0 insertions, 3 deletions
diff --git a/make_helpers/defaults.mk b/make_helpers/defaults.mk
index 660e54e7..e0d822df 100644
--- a/make_helpers/defaults.mk
+++ b/make_helpers/defaults.mk
@@ -24,9 +24,6 @@ ARM_ARCH_MINOR := 0
# in EL3. The platform port can change this value if needed.
ARM_GIC_ARCH := 2
-# Flag used to indicate if ASM_ASSERTION should be enabled for the build.
-ASM_ASSERTION := 0
-
# Base commit to perform code check on
BASE_COMMIT := origin/master