amd/fam*/northbridge.c: Fix unused hest variable
The variable actually makes to code look a lot better. TESTED: BUILD_TIMELESS=1 results in identical binaries Change-Id: Ie9104e4736a3c30b7592bb0e79a8ddc6af579800 Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/coreboot/+/63041 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
This commit is contained in:
parent
a24bcce321
commit
cc66ff3043
|
@ -714,9 +714,9 @@ static unsigned long agesa_write_acpi_tables(const struct device *device,
|
||||||
/* HEST */
|
/* HEST */
|
||||||
current = ALIGN(current, 8);
|
current = ALIGN(current, 8);
|
||||||
hest = (acpi_hest_t *)current;
|
hest = (acpi_hest_t *)current;
|
||||||
acpi_write_hest((void *)current, acpi_fill_hest);
|
acpi_write_hest(hest, acpi_fill_hest);
|
||||||
acpi_add_table(rsdp, (void *)current);
|
acpi_add_table(rsdp, hest);
|
||||||
current += ((acpi_header_t *)current)->length;
|
current += hest->header.length;
|
||||||
|
|
||||||
/* SRAT */
|
/* SRAT */
|
||||||
current = ALIGN(current, 8);
|
current = ALIGN(current, 8);
|
||||||
|
|
|
@ -475,9 +475,9 @@ static unsigned long agesa_write_acpi_tables(const struct device *device,
|
||||||
/* HEST */
|
/* HEST */
|
||||||
current = ALIGN(current, 8);
|
current = ALIGN(current, 8);
|
||||||
hest = (acpi_hest_t *)current;
|
hest = (acpi_hest_t *)current;
|
||||||
acpi_write_hest((void *)current, acpi_fill_hest);
|
acpi_write_hest(hest, acpi_fill_hest);
|
||||||
acpi_add_table(rsdp, (void *)current);
|
acpi_add_table(rsdp, hest);
|
||||||
current += ((acpi_header_t *)current)->length;
|
current += hest->header.length;
|
||||||
|
|
||||||
current = ALIGN(current, 8);
|
current = ALIGN(current, 8);
|
||||||
printk(BIOS_DEBUG, "ACPI: * IVRS at %lx\n", current);
|
printk(BIOS_DEBUG, "ACPI: * IVRS at %lx\n", current);
|
||||||
|
|
|
@ -469,9 +469,9 @@ static unsigned long agesa_write_acpi_tables(const struct device *device,
|
||||||
/* HEST */
|
/* HEST */
|
||||||
current = ALIGN(current, 8);
|
current = ALIGN(current, 8);
|
||||||
hest = (acpi_hest_t *)current;
|
hest = (acpi_hest_t *)current;
|
||||||
acpi_write_hest((void *)current, acpi_fill_hest);
|
acpi_write_hest(hest, acpi_fill_hest);
|
||||||
acpi_add_table(rsdp, (void *)current);
|
acpi_add_table(rsdp, hest);
|
||||||
current += ((acpi_header_t *)current)->length;
|
current += hest->header.length;
|
||||||
|
|
||||||
current = ALIGN(current, 8);
|
current = ALIGN(current, 8);
|
||||||
printk(BIOS_DEBUG, "ACPI: * IVRS at %lx\n", current);
|
printk(BIOS_DEBUG, "ACPI: * IVRS at %lx\n", current);
|
||||||
|
|
Loading…
Reference in New Issue