From 02b7eaf6ab6b7c5c5f83b8742f3e43991e4cff1d Mon Sep 17 00:00:00 2001 From: Lucas Stach Date: Thu, 22 Apr 2021 13:08:49 +0200 Subject: ARM: i.MX: demote reset reason print to debug level The i.MX reset reason is not really helpful on its own, as it needs to be augmented with other information like the watchdog state to get the real system reset reason. As it stands this log is more confusing than answering any questions a user might have. Demote the log to debug level to stop this confusion. Signed-off-by: Lucas Stach Reviewed-by: Marco Felsch Link: https://lore.barebox.org/20210422110849.1556472-1-l.stach@pengutronix.de Signed-off-by: Sascha Hauer --- arch/arm/mach-imx/imx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/mach-imx/imx.c b/arch/arm/mach-imx/imx.c index 3d8c55c54e..bd7e9ac423 100644 --- a/arch/arm/mach-imx/imx.c +++ b/arch/arm/mach-imx/imx.c @@ -209,6 +209,6 @@ void imx_set_reset_reason(void __iomem *srsr, reset_source_set_prinst(type, RESET_SOURCE_DEFAULT_PRIORITY, instance); - pr_info("i.MX reset reason %s (SRSR: 0x%08x)\n", - reset_source_to_string(type), reg); + pr_debug("i.MX reset reason %s (SRSR: 0x%08x)\n", + reset_source_to_string(type), reg); } -- cgit v1.2.3