diff options
author | Zheng Yongjun <zhengyongjun3@huawei.com> | 2020-12-16 14:11:59 +0100 |
---|---|---|
committer | Borislav Petkov <bp@suse.de> | 2020-12-30 08:56:35 +0100 |
commit | 3052636aa9aa2492ccac973449be63cae5b93a67 (patch) | |
tree | 59c7ea973a9647a1fd1ea7272d30308e1afb6b0f /arch/x86/kernel/cpu/mtrr | |
parent | Linux 5.11-rc1 (diff) | |
download | linux-3052636aa9aa2492ccac973449be63cae5b93a67.tar.xz linux-3052636aa9aa2492ccac973449be63cae5b93a67.zip |
x86/mtrr: Convert comma to semicolon
Replace a comma between expression statements with a semicolon.
Signed-off-by: Zheng Yongjun <zhengyongjun3@huawei.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Link: https://lkml.kernel.org/r/20201216131159.14393-1-zhengyongjun3@huawei.com
Diffstat (limited to 'arch/x86/kernel/cpu/mtrr')
-rw-r--r-- | arch/x86/kernel/cpu/mtrr/cleanup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/cpu/mtrr/cleanup.c b/arch/x86/kernel/cpu/mtrr/cleanup.c index 5bd011737272..9231640782fa 100644 --- a/arch/x86/kernel/cpu/mtrr/cleanup.c +++ b/arch/x86/kernel/cpu/mtrr/cleanup.c @@ -537,9 +537,9 @@ static void __init print_out_mtrr_range_state(void) if (!size_base) continue; - size_base = to_size_factor(size_base, &size_factor), + size_base = to_size_factor(size_base, &size_factor); start_base = range_state[i].base_pfn << (PAGE_SHIFT - 10); - start_base = to_size_factor(start_base, &start_factor), + start_base = to_size_factor(start_base, &start_factor); type = range_state[i].type; pr_debug("reg %d, base: %ld%cB, range: %ld%cB, type %s\n", |