summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Muellner <christoph.muellner@theobroma-systems.com>2019-04-30 11:44:25 +0200
committerChristoph Muellner <christoph.muellner@theobroma-systems.com>2019-04-30 11:44:25 +0200
commitfcdd44152523999505e96723f62175f34075b269 (patch)
tree88880b51fe812f0af8b579860244d483af4cdb10
parent36299ed972f2bb79b4f536816c83828556d79818 (diff)
rockchip: Remove print statements for internal addresses.HEADpuma-release-v1.3
This patch cleans up the print statements during bootup by removing not needed ones regarding used internal addresses. Signed-off-by: Christoph Muellner <christoph.muellner@theobroma-systems.com>
-rw-r--r--plat/rockchip/common/bl31_plat_setup.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/plat/rockchip/common/bl31_plat_setup.c b/plat/rockchip/common/bl31_plat_setup.c
index 0afc5272..b70dd142 100644
--- a/plat/rockchip/common/bl31_plat_setup.c
+++ b/plat/rockchip/common/bl31_plat_setup.c
@@ -209,11 +209,6 @@ void bl31_plat_arch_setup(void)
plat_cci_init();
plat_cci_enable();
- tf_printf("BL31_RO_BASE: %lx\n", BL31_RO_BASE);
- tf_printf("BL31_RO_LIMIT: %lx\n", BL31_RO_LIMIT);
- tf_printf("BL_COHERENT_RAM_BASE: %lx\n", BL_COHERENT_RAM_BASE);
- tf_printf("BL_COHERENT_RAM_END: %lx\n", BL_COHERENT_RAM_END);
-
#if 0
plat_configure_mmu_el3(BL31_RO_BASE,
BL_COHERENT_RAM_END - BL31_RO_BASE,
@@ -235,6 +230,4 @@ void bl31_plat_arch_setup(void)
);
enable_mmu_el3(0);
#endif
-
- tf_printf("%s: still alive\n", __func__);
}