diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2014-05-04 08:53:51 +0300 |
---|---|---|
committer | Patrick Georgi <patrick@georgi-clan.de> | 2014-05-05 08:52:48 +0200 |
commit | 6711dce55275755d41920001890029c684145cb1 (patch) | |
tree | e2dffabc70ed417cac36e80482f77382bcaf9b63 /src/mainboard/jetway/nf81-t56n-lf/agesawrapper.c | |
parent | f15e53a730940cbeaf8bf48a2bd12292ac49dc22 (diff) | |
download | coreboot-6711dce55275755d41920001890029c684145cb1.tar.xz |
jetway/nf81-t56n-lf: Revert change on function prototypes
These function prototypes to remain identical across all
AGESA families.
Change-Id: If2a0a08fa7122e6becded37d032d3c40bde2d149
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: http://review.coreboot.org/5656
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Diffstat (limited to 'src/mainboard/jetway/nf81-t56n-lf/agesawrapper.c')
-rw-r--r-- | src/mainboard/jetway/nf81-t56n-lf/agesawrapper.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mainboard/jetway/nf81-t56n-lf/agesawrapper.c b/src/mainboard/jetway/nf81-t56n-lf/agesawrapper.c index 4f25756af7..89f3c01c46 100644 --- a/src/mainboard/jetway/nf81-t56n-lf/agesawrapper.c +++ b/src/mainboard/jetway/nf81-t56n-lf/agesawrapper.c @@ -181,16 +181,16 @@ AGESA_STATUS agesawrapper_amdinitearly(void) return status; } -uint32_t GetHeapBase( +UINT32 GetHeapBase( AMD_CONFIG_PARAMS *StdHeader ) { - uint32_t heap; + UINT32 heap; #if CONFIG_HAVE_ACPI_RESUME /* Both romstage and ramstage has this S3 detect. */ if (acpi_get_sleep_type() == 3) - heap = (uint32_t)cbmem_find(CBMEM_ID_RESUME_SCRATCH) + (CONFIG_HIGH_SCRATCH_MEMORY_SIZE - BIOS_HEAP_SIZE); /* himem_heap_base + high_stack_size */ + heap = (UINT32)cbmem_find(CBMEM_ID_RESUME_SCRATCH) + (CONFIG_HIGH_SCRATCH_MEMORY_SIZE - BIOS_HEAP_SIZE); /* himem_heap_base + high_stack_size */ else #endif heap = BIOS_HEAP_START_ADDRESS; /* low mem */ |