浏览代码

x66, UV: Enable 64-bit ACPI MFCG support for SGI UV2 platform

Enable 64-bit ACPI MFCG support for SGI UV2 platform. The check
is similar to the check on UV1. UV2 has a different oem_id
string.

Signed-off-by: Jack Steiner <steiner@sgi.com>
Link: http://lkml.kernel.org/r/20110602195943.GA27079@sgi.com
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Jack Steiner 14 年之前
父节点
当前提交
6885685923
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      arch/x86/pci/mmconfig-shared.c

+ 2 - 1
arch/x86/pci/mmconfig-shared.c

@@ -519,7 +519,8 @@ static int __init acpi_mcfg_check_entry(struct acpi_table_mcfg *mcfg,
 	if (cfg->address < 0xFFFFFFFF)
 	if (cfg->address < 0xFFFFFFFF)
 		return 0;
 		return 0;
 
 
-	if (!strcmp(mcfg->header.oem_id, "SGI"))
+	if (!strcmp(mcfg->header.oem_id, "SGI") ||
+			!strcmp(mcfg->header.oem_id, "SGI2"))
 		return 0;
 		return 0;
 
 
 	if (mcfg->header.revision >= 1) {
 	if (mcfg->header.revision >= 1) {