Skip to content

Commit

Permalink
core: demote a couple of messages from IMSG() to DMSG()
Browse files Browse the repository at this point in the history
The first and and fourth lines in the boot sequence below are debug
messages that should not be printed when the log level is INFO:

 INFO:    TEE-CORE: No NSEC DDR memory area defined
 INFO:    TEE-CORE:
 INFO:    TEE-CORE: OP-TEE version: 2.5.0-rc1 #1 Wed Jun 28 15:11:06 UTC 2017 aarch64
 INFO:    TEE-CORE: Shared memory address range: 3dc00000, 3f000000
 INFO:    TEE-CORE: Initialized

Signed-off-by: Jerome Forissier <[email protected]>
Reviewed-by: Etienne Carriere <[email protected]>
  • Loading branch information
jforissier committed Jun 28, 2017
1 parent 8287faf commit 3520324
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/arch/arm/mm/core_mmu.c
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ static void verify_special_mem_areas(struct tee_mmap_region *mem_map,
size_t n;

if (start == end) {
IMSG("No %s memory area defined", area_name);
DMSG("No %s memory area defined", area_name);
return;
}

Expand Down
2 changes: 1 addition & 1 deletion core/arch/arm/mm/mobj.c
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@ static TEE_Result mobj_mapped_shm_init(void)
TEE_MM_POOL_NO_FLAGS))
panic("Could not create shmem pool");

IMSG("Shared memory address range: %" PRIxVA ", %" PRIxVA,
DMSG("Shared memory address range: %" PRIxVA ", %" PRIxVA,
pool_start, pool_end);
return TEE_SUCCESS;
}
Expand Down

0 comments on commit 3520324

Please sign in to comment.