summaryrefslogtreecommitdiff
path: root/src/mainboard/asus/f2a85-m/BiosCallOuts.c
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2014-05-04 11:42:55 +0300
committerKyösti Mälkki <kyosti.malkki@gmail.com>2014-06-06 13:31:31 +0200
commitef9343cac1917308c13c331d4fdef8d1eb799e9a (patch)
tree90c4572a527f96ccff9947ef0c4888d17768aed0 /src/mainboard/asus/f2a85-m/BiosCallOuts.c
parent6025efa3472f38d719d850d2143dae0b215db0f3 (diff)
downloadcoreboot-ef9343cac1917308c13c331d4fdef8d1eb799e9a.tar.xz
AGESA: Use common heap allocator
Change-Id: I5df1f0efdef2592b762fe391edaadbca4593e85a Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: http://review.coreboot.org/5689 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Diffstat (limited to 'src/mainboard/asus/f2a85-m/BiosCallOuts.c')
-rw-r--r--src/mainboard/asus/f2a85-m/BiosCallOuts.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mainboard/asus/f2a85-m/BiosCallOuts.c b/src/mainboard/asus/f2a85-m/BiosCallOuts.c
index 68da196bd0..539f4bdb30 100644
--- a/src/mainboard/asus/f2a85-m/BiosCallOuts.c
+++ b/src/mainboard/asus/f2a85-m/BiosCallOuts.c
@@ -27,9 +27,9 @@
const BIOS_CALLOUT_STRUCT BiosCallouts[] =
{
- {AGESA_ALLOCATE_BUFFER, fam15tn_AllocateBuffer },
- {AGESA_DEALLOCATE_BUFFER, fam15tn_DeallocateBuffer },
- {AGESA_LOCATE_BUFFER, fam15tn_LocateBuffer },
+ {AGESA_ALLOCATE_BUFFER, agesa_AllocateBuffer },
+ {AGESA_DEALLOCATE_BUFFER, agesa_DeallocateBuffer },
+ {AGESA_LOCATE_BUFFER, agesa_LocateBuffer },
{AGESA_READ_SPD, fam15tn_ReadSpd },
{AGESA_DO_RESET, agesa_Reset },
{AGESA_READ_SPD_RECOVERY, agesa_NoopUnsupported },