]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
x86: fix overlong line in arch/x86/kernel/cpu/amd_64.c
authorH. Peter Anvin <hpa@zytor.com>
Fri, 30 May 2008 22:42:45 +0000 (15:42 -0700)
committerH. 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

index 1746f6f957260491bec0a3a66b28e1eeda693100..c815c2c0484b2da6c783dea347d5972e040d9440 100644 (file)
@@ -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);
        }
 }