projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5c8fe58
)
x86/mtrr: Convert comma to semicolon
author
Zheng Yongjun
<zhengyongjun3@huawei.com>
Wed, 16 Dec 2020 13:11:59 +0000
(21:11 +0800)
committer
Borislav Petkov
<bp@suse.de>
Wed, 30 Dec 2020 07:56:35 +0000
(08:56 +0100)
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
arch/x86/kernel/cpu/mtrr/cleanup.c
patch
|
blob
|
history
diff --git
a/arch/x86/kernel/cpu/mtrr/cleanup.c
b/arch/x86/kernel/cpu/mtrr/cleanup.c
index 5bd011737272d48511c1f5218f19768661673dd1..9231640782fa23fdb4974e72ec4699b4b5491029 100644
(file)
--- 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",