Skip to content

Commit

Permalink
Merge branch 'bugzilla-16357' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
Len Brown committed Jul 22, 2010
2 parents b37fa16 + 856b185 commit 840ba24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/acpi/processor_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 840ba24

Please sign in to comment.