ACPI: Fix minor syntax issues in processor_core.c
Fix minor syntax issues in processor_core.c to follow coding styles. Signed-off-by: Jiang Liu <jiang.liu@linux.intel.com> Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> Cc: Tony Luck <tony.luck@intel.com> Cc: Joerg Roedel <joro@8bytes.org> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: Rafael J. Wysocki <rjw@rjwysocki.net> Cc: Bjorn Helgaas <bhelgaas@google.com> Cc: Randy Dunlap <rdunlap@infradead.org> Cc: Yinghai Lu <yinghai@kernel.org> Cc: Borislav Petkov <bp@alien8.de> Cc: Len Brown <lenb@kernel.org> Link: http://lkml.kernel.org/r/1414387308-27148-7-git-send-email-jiang.liu@linux.intel.com Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
committed by
Thomas Gleixner
parent
250a1ac685
commit
13ca62b243
@@ -125,13 +125,12 @@ static int map_mat_entry(acpi_handle handle, int type, u32 acpi_id)
|
|||||||
}
|
}
|
||||||
|
|
||||||
header = (struct acpi_subtable_header *)obj->buffer.pointer;
|
header = (struct acpi_subtable_header *)obj->buffer.pointer;
|
||||||
if (header->type == ACPI_MADT_TYPE_LOCAL_APIC) {
|
if (header->type == ACPI_MADT_TYPE_LOCAL_APIC)
|
||||||
map_lapic_id(header, acpi_id, &apic_id);
|
map_lapic_id(header, acpi_id, &apic_id);
|
||||||
} else if (header->type == ACPI_MADT_TYPE_LOCAL_SAPIC) {
|
else if (header->type == ACPI_MADT_TYPE_LOCAL_SAPIC)
|
||||||
map_lsapic_id(header, type, acpi_id, &apic_id);
|
map_lsapic_id(header, type, acpi_id, &apic_id);
|
||||||
} else if (header->type == ACPI_MADT_TYPE_LOCAL_X2APIC) {
|
else if (header->type == ACPI_MADT_TYPE_LOCAL_X2APIC)
|
||||||
map_x2apic_id(header, type, acpi_id, &apic_id);
|
map_x2apic_id(header, type, acpi_id, &apic_id);
|
||||||
}
|
|
||||||
|
|
||||||
exit:
|
exit:
|
||||||
kfree(buffer.pointer);
|
kfree(buffer.pointer);
|
||||||
|
|||||||
Reference in New Issue
Block a user