Commit 3052636a authored by Zheng Yongjun's avatar Zheng Yongjun Committed by Borislav Petkov

x86/mtrr: Convert comma to semicolon

Replace a comma between expression statements with a semicolon.
Signed-off-by: default avatarZheng Yongjun <zhengyongjun3@huawei.com>
Signed-off-by: default avatarBorislav Petkov <bp@suse.de>
Link: https://lkml.kernel.org/r/20201216131159.14393-1-zhengyongjun3@huawei.com
parent 5c8fe583
...@@ -537,9 +537,9 @@ static void __init print_out_mtrr_range_state(void) ...@@ -537,9 +537,9 @@ static void __init print_out_mtrr_range_state(void)
if (!size_base) if (!size_base)
continue; 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 = 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; type = range_state[i].type;
pr_debug("reg %d, base: %ld%cB, range: %ld%cB, type %s\n", pr_debug("reg %d, base: %ld%cB, range: %ld%cB, type %s\n",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment