From ce14c90ddc64b36b8e471a97a91a41ea1e6a8e49 Mon Sep 17 00:00:00 2001 From: Anusha Rao Date: Mon, 17 Jan 2022 16:15:50 +0530 Subject: [PATCH] ipq: Update debug print for runtime failsafe boot In case of runtime failure, xBL updates NonHLOS partitions and HLOS as well in NAND case. Make the print generic. Change-Id: I7d75ac7c1d730c4bff3fe693fc3623e56a19b494 Signed-off-by: Anusha Rao --- arch/arm/cpu/armv7/qca/common/smem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/cpu/armv7/qca/common/smem.c b/arch/arm/cpu/armv7/qca/common/smem.c index fe9583f828..197a2891e8 100644 --- a/arch/arm/cpu/armv7/qca/common/smem.c +++ b/arch/arm/cpu/armv7/qca/common/smem.c @@ -550,7 +550,7 @@ int smem_update_bootconfig_to_flash(void) /* Update BOOTCONFIG in flash only if there is an update in SMEM by SBL */ if (!ipq_runtime_fs_skip_status_check) { if (ipq_runtime_failsafe_status & IPQ_RUNTIME_FS_BOOTCONFIG_UPDATED) { - printf("\nNonHLOS runtime hang detected: Partitions switched.\n"); + printf("\nRuntime hang detected: Partitions switched by SBL.\n"); } else { return 0; }