From daffe1ac496d2ef233d96e5c2ba25aa59078facb Mon Sep 17 00:00:00 2001 From: Manuel Ebner Date: Fri, 3 Jul 2026 13:51:15 +0200 Subject: sched/Documentation: fix code checkpatch.pl returns 'trailing statements should be on next line' for this file. Do as told. Signed-off-by: Manuel Ebner Acked-by: Randy Dunlap Tested-by: Randy Dunlap Signed-off-by: Jonathan Corbet Message-ID: <20260703115114.229848-3-manuelebner@mailbox.org> --- Documentation/scheduler/sched-pelt.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Documentation/scheduler/sched-pelt.c b/Documentation/scheduler/sched-pelt.c index 7238b355919c..38ff53dcf352 100644 --- a/Documentation/scheduler/sched-pelt.c +++ b/Documentation/scheduler/sched-pelt.c @@ -25,7 +25,8 @@ void calc_runnable_avg_yN_inv(void) for (i = 0; i < HALFLIFE; i++) { x = ((1UL<<32)-1)*pow(y, i); - if (i % 6 == 0) printf("\n\t"); + if (i % 6 == 0) + printf("\n\t"); printf("0x%8x, ", x); } printf("\n};\n\n"); -- cgit v1.2.3