diff options
author | Victor Chong <victor.chong@linaro.org> | 2018-02-01 00:37:49 +0900 |
---|---|---|
committer | Victor Chong <victor.chong@linaro.org> | 2018-02-08 02:14:46 +0900 |
commit | 3b12a6fc8e8ee793fcc569a26b73f83b79fc4ba1 (patch) | |
tree | 290dd0967e025ce3609a6c944b0d79a3c8d23ec1 /plat/hisilicon/poplar | |
parent | f3d522be8e567bb42663d0abd69f89715c58e591 (diff) | |
download | trusted-firmware-a-3b12a6fc8e8ee793fcc569a26b73f83b79fc4ba1.tar.gz |
hikey*, poplar: platform.mk: Fix typo in variable assignments
Signed-off-by: Victor Chong <victor.chong@linaro.org>
Diffstat (limited to 'plat/hisilicon/poplar')
-rw-r--r-- | plat/hisilicon/poplar/platform.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plat/hisilicon/poplar/platform.mk b/plat/hisilicon/poplar/platform.mk index 58f21ed1d..7c8027ead 100644 --- a/plat/hisilicon/poplar/platform.mk +++ b/plat/hisilicon/poplar/platform.mk @@ -8,11 +8,11 @@ LOAD_IMAGE_V2 := 1 # On Poplar, the TSP can execute from TZC secure area in DRAM. -POPLAR_TSP_RAM_LOCATION := dram +POPLAR_TSP_RAM_LOCATION ?= dram ifeq (${POPLAR_TSP_RAM_LOCATION}, dram) POPLAR_TSP_RAM_LOCATION_ID = POPLAR_DRAM_ID else ifeq (${POPLAR_TSP_RAM_LOCATION}, sram) - POPLAR_TSP_RAM_LOCATION_ID := POPLAR_SRAM_ID + POPLAR_TSP_RAM_LOCATION_ID = POPLAR_SRAM_ID else $(error "Currently unsupported POPLAR_TSP_RAM_LOCATION value") endif |