diff options
| author | Charles Han <hanchunchao@inspur.com> | 2025-03-05 14:35:14 +0800 |
|---|---|---|
| committer | Ingo Molnar <mingo@kernel.org> | 2025-03-05 09:51:04 +0100 |
| commit | f739365158a33549cf1827968b12a370ab75589e (patch) | |
| tree | 2c760ca23c89fe99d9770cd30cbc6f28c229a21b | |
| parent | 40fc7561013914ec08c200bb7a0805643a23e070 (diff) | |
x86/delay: Fix inconsistent whitespace
Smatch warns about this whitespace damage:
arch/x86/lib/delay.c:134 delay_halt_mwaitx() warn: inconsistent indenting
Signed-off-by: Charles Han <hanchunchao@inspur.com>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Link: https://lore.kernel.org/r/20250305063515.3951-1-hanchunchao@inspur.com
| -rw-r--r-- | arch/x86/lib/delay.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/lib/delay.c b/arch/x86/lib/delay.c index 23f81ca3f06b..e86eda2c0b04 100644 --- a/arch/x86/lib/delay.c +++ b/arch/x86/lib/delay.c @@ -131,7 +131,7 @@ static void delay_halt_mwaitx(u64 unused, u64 cycles) * Use cpu_tss_rw as a cacheline-aligned, seldom accessed per-cpu * variable as the monitor target. */ - __monitorx(raw_cpu_ptr(&cpu_tss_rw), 0, 0); + __monitorx(raw_cpu_ptr(&cpu_tss_rw), 0, 0); /* * AMD, like Intel, supports the EAX hint and EAX=0xf means, do not |
