diff options
author | Marc Jones <marc.jones@se-eng.com> | 2012-05-25 12:20:10 -0600 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2012-05-25 21:24:19 +0200 |
commit | 872e74dda256e0a81644b8e7f06110e0e1652ceb (patch) | |
tree | d7c63ab26d3ef6c8d3ab6ecab333fb4f34e6cf4b /src/mainboard/amd | |
parent | 9981cad80173510a2070ab884cf63c9cca51e69b (diff) | |
download | coreboot-872e74dda256e0a81644b8e7f06110e0e1652ceb.tar.xz |
Fix typo on Persimmon #if CONFIG_HAVE_ACPI_RESUME
Stupid typo: APCI instead of ACPI in Persimmon.
Change-Id: I6fd7f091cf1f5c4c0e1b57c21553dab93b545eab
Signed-off-by: Marc Jones <marc.jones@se-eng.com>
Reviewed-on: http://review.coreboot.org/1054
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/mainboard/amd')
-rw-r--r-- | src/mainboard/amd/persimmon/agesawrapper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/amd/persimmon/agesawrapper.c b/src/mainboard/amd/persimmon/agesawrapper.c index 195ff54f3b..779e198d2e 100644 --- a/src/mainboard/amd/persimmon/agesawrapper.c +++ b/src/mainboard/amd/persimmon/agesawrapper.c @@ -253,7 +253,7 @@ UINT32 GetHeapBase( { UINT32 heap; -#if CONFIG_HAVE_APCI_RESUME +#if CONFIG_HAVE_ACPI_RESUME /* Both romstage and ramstage has this S3 detect. */ if (acpi_get_sleep_type() == 3) heap = (UINT32)cbmem_find(CBMEM_ID_RESUME_SCRATCH) + (CONFIG_HIGH_SCRATCH_MEMORY_SIZE - BIOS_HEAP_SIZE); /* himem_heap_base + high_stack_size */ |