From 1277af9bacca36b46d7aa341187bb3abef84332f Mon Sep 17 00:00:00 2001 From: Venkatesh Yadav Abbarapu Date: Tue, 12 Apr 2022 09:21:32 +0530 Subject: [PATCH] fix(zynqmp): update the log message to verbose Changing the log message from notice to verbose, to save some space and that leads to successfull compilation. Signed-off-by: Venkatesh Yadav Abbarapu Change-Id: Iee5a808febf211464eb8ba6f0377f79378333f5d --- plat/xilinx/zynqmp/aarch64/zynqmp_common.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plat/xilinx/zynqmp/aarch64/zynqmp_common.c b/plat/xilinx/zynqmp/aarch64/zynqmp_common.c index fae73cf3c..5bfc2ebcc 100644 --- a/plat/xilinx/zynqmp/aarch64/zynqmp_common.c +++ b/plat/xilinx/zynqmp/aarch64/zynqmp_common.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2019, ARM Limited and Contributors. All rights reserved. + * Copyright (c) 2013-2022, ARM Limited and Contributors. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ @@ -329,8 +329,8 @@ static void zynqmp_print_platform_name(void) break; } - NOTICE("TF-A running on %s/%s at 0x%x\n", - zynqmp_print_silicon_idcode(), label, BL31_BASE); + VERBOSE("TF-A running on %s/%s at 0x%x\n", + zynqmp_print_silicon_idcode(), label, BL31_BASE); VERBOSE("TF-A running on v%d/RTL%d.%d\n", zynqmp_get_ps_ver(), (rtl & 0xf0) >> 4, rtl & 0xf); }