Browse Source

Merge branch 'bugzilla-16357' into release

Len Brown 15 years ago
parent
commit
840ba24dd6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/acpi/processor_core.c

+ 1 - 1
drivers/acpi/processor_core.c

@@ -223,7 +223,7 @@ static bool processor_physically_present(acpi_handle handle)
 	type = (acpi_type == ACPI_TYPE_DEVICE) ? 1 : 0;
 	cpuid = acpi_get_cpuid(handle, type, acpi_id);
 
-	if (cpuid == -1)
+	if ((cpuid == -1) && (num_possible_cpus() > 1))
 		return false;
 
 	return true;