diff options
author | zbao <fishbaozi@gmail.com> | 2012-04-13 13:48:50 +0800 |
---|---|---|
committer | Marc Jones <marcj303@gmail.com> | 2012-04-19 04:53:32 +0200 |
commit | 2132005b2041b24136c09220b73a7cef698b22b2 (patch) | |
tree | 9f6665a0816678a4fccbfb5813ccf72cda7a823d /src/mainboard/amd/persimmon | |
parent | 585a4006976e903599b7128200a29b5729777818 (diff) |
Fix messy code in ALIB creation
Fix the copy-paste typo in ALIB table creation. ssdt is useless here.
Change-Id: I250066eb5f755275f75c37789ce8760de35b046b
Signed-off-by: Zheng Bao <zheng.bao@amd.com>
Signed-off-by: zbao <fishbaozi@gmail.com>
Reviewed-on: http://review.coreboot.org/885
Tested-by: build bot (Jenkins)
Reviewed-by: Marc Jones <marcj303@gmail.com>
Diffstat (limited to 'src/mainboard/amd/persimmon')
-rw-r--r-- | src/mainboard/amd/persimmon/acpi_tables.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mainboard/amd/persimmon/acpi_tables.c b/src/mainboard/amd/persimmon/acpi_tables.c index 4a44a5abe5..cb415fdfe9 100644 --- a/src/mainboard/amd/persimmon/acpi_tables.c +++ b/src/mainboard/amd/persimmon/acpi_tables.c @@ -256,11 +256,10 @@ unsigned long write_acpi_tables(unsigned long start) alib = (acpi_header_t *)agesawrapper_getlateinitptr (PICK_ALIB); if (alib != NULL) { memcpy((void *)current, alib, alib->length); - ssdt = (acpi_header_t *) current; + alib = (acpi_header_t *) current; current += alib->length; - acpi_add_table(rsdp,alib); - } - else { + acpi_add_table(rsdp, (void *)alib); + } else { printk(BIOS_DEBUG, " AGESA ALIB SSDT table NULL. Skipping.\n"); } |