projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
30a7131
)
x86: fix overlong line in arch/x86/kernel/cpu/amd_64.c
author
H. Peter Anvin
<hpa@zytor.com>
Fri, 30 May 2008 22:42:45 +0000
(15:42 -0700)
committer
H. Peter Anvin
<hpa@zytor.com>
Fri, 30 May 2008 22:46:30 +0000
(15:46 -0700)
Clean up an overlong line in arch/x86/kernel/cpu/amd_64.c.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
arch/x86/kernel/cpu/amd_64.c
patch
|
blob
|
history
diff --git
a/arch/x86/kernel/cpu/amd_64.c
b/arch/x86/kernel/cpu/amd_64.c
index 1746f6f957260491bec0a3a66b28e1eeda693100..c815c2c0484b2da6c783dea347d5972e040d9440 100644
(file)
--- a/
arch/x86/kernel/cpu/amd_64.c
+++ b/
arch/x86/kernel/cpu/amd_64.c
@@
-229,7
+229,8
@@
void __cpuinit init_amd(struct cpuinfo_x86 *c)
* benefit in doing so.
*/
if (!rdmsrl_safe(MSR_K8_TSEG_ADDR, &tseg) &&
- (tseg >> PMD_SHIFT) < (max_pfn_mapped >> (PMD_SHIFT-PAGE_SHIFT)))
+ (tseg >> PMD_SHIFT) <
+ (max_pfn_mapped >> (PMD_SHIFT-PAGE_SHIFT)))
set_memory_4k((unsigned long)__va(tseg), 1);
}
}