aboutsummaryrefslogtreecommitdiff
path: root/src/soc/amd/common/pi/heapmanager.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/amd/common/pi/heapmanager.c')
-rw-r--r--src/soc/amd/common/pi/heapmanager.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/soc/amd/common/pi/heapmanager.c b/src/soc/amd/common/pi/heapmanager.c
index 154f04d825..34a4837d73 100644
--- a/src/soc/amd/common/pi/heapmanager.c
+++ b/src/soc/amd/common/pi/heapmanager.c
@@ -236,7 +236,6 @@ AGESA_STATUS agesa_AllocateBuffer(uint32_t Func, uintptr_t Data,
* betterfit than the previous nodes
*/
if (BestFitNodeSize > FreedNodeSize) {
-
BestFitNodeOffset =
FreedNodeOffset;
BestFitPrevNodeOffset =
@@ -308,7 +307,6 @@ AGESA_STATUS agesa_AllocateBuffer(uint32_t Func, uintptr_t Data,
AGESA_STATUS agesa_DeallocateBuffer(uint32_t Func, uintptr_t Data,
void *ConfigPtr)
{
-
uint8_t *BiosHeapBaseAddr;
uint32_t AllocNodeOffset;
uint32_t PrevNodeOffset;
@@ -436,5 +434,4 @@ AGESA_STATUS agesa_LocateBuffer(uint32_t Func, uintptr_t Data, void *ConfigPtr)
}
return Status;
-
}