whitespace-only changes in acpi.c, replaced spaces with tabs
Change-Id: Ibd598813bec0c93d77afbce8aee330498afbe5f6 Signed-off-by: Cristian Măgherușan-Stanciu <cristi.magherusan@gmail.com> Reviewed-on: http://review.coreboot.org/74 Reviewed-by: Patrick Georgi <patrick@georgi-clan.de> Tested-by: build bot (Jenkins)
This commit is contained in:
parent
9f52ea4c3c
commit
ba48281faf
|
@ -69,7 +69,7 @@ void acpi_add_table(acpi_rsdp_t *rsdp, void *table)
|
||||||
|
|
||||||
if (i >= entries_num) {
|
if (i >= entries_num) {
|
||||||
printk(BIOS_ERR, "ACPI: Error: Could not add ACPI table, "
|
printk(BIOS_ERR, "ACPI: Error: Could not add ACPI table, "
|
||||||
"too many tables.\n");
|
"too many tables.\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -93,20 +93,20 @@ void acpi_add_table(acpi_rsdp_t *rsdp, void *table)
|
||||||
|
|
||||||
/* Fix XSDT length. */
|
/* Fix XSDT length. */
|
||||||
xsdt->header.length = sizeof(acpi_header_t) +
|
xsdt->header.length = sizeof(acpi_header_t) +
|
||||||
(sizeof(u64) * (i + 1));
|
(sizeof(u64) * (i + 1));
|
||||||
|
|
||||||
/* Re-calculate checksum. */
|
/* Re-calculate checksum. */
|
||||||
xsdt->header.checksum = 0;
|
xsdt->header.checksum = 0;
|
||||||
xsdt->header.checksum = acpi_checksum((u8 *)xsdt,
|
xsdt->header.checksum = acpi_checksum((u8 *)xsdt,
|
||||||
xsdt->header.length);
|
xsdt->header.length);
|
||||||
}
|
}
|
||||||
|
|
||||||
printk(BIOS_DEBUG, "ACPI: added table %d/%d, length now %d\n",
|
printk(BIOS_DEBUG, "ACPI: added table %d/%d, length now %d\n",
|
||||||
i + 1, entries_num, rsdt->header.length);
|
i + 1, entries_num, rsdt->header.length);
|
||||||
}
|
}
|
||||||
|
|
||||||
int acpi_create_mcfg_mmconfig(acpi_mcfg_mmconfig_t *mmconfig, u32 base,
|
int acpi_create_mcfg_mmconfig(acpi_mcfg_mmconfig_t *mmconfig, u32 base,
|
||||||
u16 seg_nr, u8 start, u8 end)
|
u16 seg_nr, u8 start, u8 end)
|
||||||
{
|
{
|
||||||
mmconfig->base_address = base;
|
mmconfig->base_address = base;
|
||||||
mmconfig->base_reserved = 0;
|
mmconfig->base_reserved = 0;
|
||||||
|
@ -135,7 +135,7 @@ unsigned long acpi_create_madt_lapics(unsigned long current)
|
||||||
|
|
||||||
for (cpu = all_devices; cpu; cpu = cpu->next) {
|
for (cpu = all_devices; cpu; cpu = cpu->next) {
|
||||||
if ((cpu->path.type != DEVICE_PATH_APIC) ||
|
if ((cpu->path.type != DEVICE_PATH_APIC) ||
|
||||||
(cpu->bus->dev->path.type != DEVICE_PATH_APIC_CLUSTER)) {
|
(cpu->bus->dev->path.type != DEVICE_PATH_APIC_CLUSTER)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (!cpu->enabled)
|
if (!cpu->enabled)
|
||||||
|
@ -149,7 +149,7 @@ unsigned long acpi_create_madt_lapics(unsigned long current)
|
||||||
}
|
}
|
||||||
|
|
||||||
int acpi_create_madt_ioapic(acpi_madt_ioapic_t *ioapic, u8 id, u32 addr,
|
int acpi_create_madt_ioapic(acpi_madt_ioapic_t *ioapic, u8 id, u32 addr,
|
||||||
u32 gsi_base)
|
u32 gsi_base)
|
||||||
{
|
{
|
||||||
ioapic->type = 1; /* I/O APIC structure */
|
ioapic->type = 1; /* I/O APIC structure */
|
||||||
ioapic->length = sizeof(acpi_madt_ioapic_t);
|
ioapic->length = sizeof(acpi_madt_ioapic_t);
|
||||||
|
@ -175,7 +175,7 @@ int acpi_create_madt_irqoverride(acpi_madt_irqoverride_t *irqoverride,
|
||||||
}
|
}
|
||||||
|
|
||||||
int acpi_create_madt_lapic_nmi(acpi_madt_lapic_nmi_t *lapic_nmi, u8 cpu,
|
int acpi_create_madt_lapic_nmi(acpi_madt_lapic_nmi_t *lapic_nmi, u8 cpu,
|
||||||
u16 flags, u8 lint)
|
u16 flags, u8 lint)
|
||||||
{
|
{
|
||||||
lapic_nmi->type = 4; /* Local APIC NMI structure */
|
lapic_nmi->type = 4; /* Local APIC NMI structure */
|
||||||
lapic_nmi->length = sizeof(acpi_madt_lapic_nmi_t);
|
lapic_nmi->length = sizeof(acpi_madt_lapic_nmi_t);
|
||||||
|
@ -287,7 +287,7 @@ int acpi_create_srat_lapic(acpi_srat_lapic_t *lapic, u8 node, u8 apic)
|
||||||
}
|
}
|
||||||
|
|
||||||
int acpi_create_srat_mem(acpi_srat_mem_t *mem, u8 node, u32 basek, u32 sizek,
|
int acpi_create_srat_mem(acpi_srat_mem_t *mem, u8 node, u32 basek, u32 sizek,
|
||||||
u32 flags)
|
u32 flags)
|
||||||
{
|
{
|
||||||
mem->type = 1; /* Memory affinity structure */
|
mem->type = 1; /* Memory affinity structure */
|
||||||
mem->length = sizeof(acpi_srat_mem_t);
|
mem->length = sizeof(acpi_srat_mem_t);
|
||||||
|
|
Loading…
Reference in New Issue