Skip to content

Commit

Permalink
arm: bugfix compile error in tee_mmu_map()
Browse files Browse the repository at this point in the history
Reviewed-by: Pascal Brand <[email protected]>
Reviewed-by: Jerome Forissier <[email protected]>
Signed-off-by: Jens Wiklander <[email protected]>
  • Loading branch information
jenswi-linaro committed Dec 11, 2015
1 parent 7b3f7ed commit 27ecfc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/arch/arm/mm/tee_mmu.c
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ TEE_Result tee_mmu_init(struct tee_ta_ctx *ctx)
TEE_Result tee_mmu_map(struct tee_ta_ctx *ctx, struct tee_ta_param *param)
{
TEE_Result res = TEE_SUCCESS;
paddr_t pa = NULL;
paddr_t pa = 0;
uintptr_t smem;
size_t n;

Expand Down

0 comments on commit 27ecfc4

Please sign in to comment.