mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-08-31 08:15:07 -04:00
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:
committed by
Jonathan Corbet
parent
82da0f94d4
commit
daffe1ac49
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user