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 <manuelebner@mailbox.org>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Tested-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Message-ID: <20260703115114.229848-3-manuelebner@mailbox.org>
This commit is contained in:
Manuel Ebner
2026-07-03 13:51:15 +02:00
committed by Jonathan Corbet
parent 82da0f94d4
commit daffe1ac49

View File

@@ -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");