ACPI: IA64: fix calculation of apic_id
fix regression from recent table re-write Signed-off-by: Alexey Starikovskiy <alexey.y.starikovskiy@linux.intel.com> Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
Родитель
359acec8cd
Коммит
615d5f235b
|
@ -404,7 +404,7 @@ static int map_lsapic_id(struct acpi_subtable_header *entry,
|
|||
if (lsapic->lapic_flags & ACPI_MADT_ENABLED) {
|
||||
/* First check against id */
|
||||
if (lsapic->processor_id == acpi_id) {
|
||||
*apic_id = lsapic->id;
|
||||
*apic_id = (lsapic->id << 8) | lsapic->eid;
|
||||
return 1;
|
||||
/* Check against optional uid */
|
||||
} else if (entry->length >= 16 &&
|
||||
|
|
Загрузка…
Ссылка в новой задаче