From c9362860103541cad141c59386362dc35c8c161f Mon Sep 17 00:00:00 2001 From: Shiju Jose Date: Mon, 19 Aug 2024 11:51:30 +0100 Subject: [PATCH] rasdaemon: ras-arm-handler: Fix checkpatch warning length exceeds 120 columns Fix following checkpatch warning in ras-arm-handler. + trace_seq_printf(s, " Program execution can be restarted reliably at the PC associated with the error"); Signed-off-by: Shiju Jose Signed-off-by: Mauro Carvalho Chehab --- ras-arm-handler.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ras-arm-handler.c b/ras-arm-handler.c index 949be69..ce10022 100644 --- a/ras-arm-handler.c +++ b/ras-arm-handler.c @@ -271,7 +271,7 @@ static void parse_arm_err_info(struct trace_seq *s, uint32_t type, uint64_t erro restartable_pc = ((error_info >> ARM_ERR_RESTARTABLE_PC_SHIFT) & ARM_ERR_RESTARTABLE_PC_MASK); if (restartable_pc) - trace_seq_printf(s, " Program execution can be restarted reliably at the PC associated with the error"); + trace_seq_printf(s, " Program execution can be restartable reliably at the PC"); } /* The rest of the fields are specific to bus errors */ -- 2.50.1