x86: amd opteron TOM2 mask val fix

there is a typo in the mask value, need to remove that extra 0,
to avoid 4bit clearing.

Signed-off-by: Yinghal Lu <yhlu.kernel@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
这个提交包含在:
Yinghai Lu
2008-05-12 17:40:39 -07:00
提交者 Thomas Gleixner
父节点 b79cd8f126
当前提交 8004dd965b
修改 2 个文件,包含 3 行新增3 行删除

查看文件

@@ -233,7 +233,7 @@ void __init get_mtrr_state(void)
mtrr_tom2 = high;
mtrr_tom2 <<= 32;
mtrr_tom2 |= low;
mtrr_tom2 &= 0xffffff8000000ULL;
mtrr_tom2 &= 0xffffff800000ULL;
}
if (mtrr_show) {
int high_width;