soc/amd/common: Remove #ifndef/#endif from AGESA wrapper

There isn't a good reason to keep the checks for __PRE_RAM__.  The global
variables are not used outside of ramstage and the linker removes them
cleanly in other stages.

BUG=b:70671590
TEST=Build and boot Kahlee

Change-Id: I7a35141f212f340c157d57fde8daf93c0c383af8
Signed-off-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Reviewed-on: https://review.coreboot.org/22885
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
diff --git a/src/soc/amd/common/block/pi/agesawrapper.c b/src/soc/amd/common/block/pi/agesawrapper.c
index b9931d2..467206e 100644
--- a/src/soc/amd/common/block/pi/agesawrapper.c
+++ b/src/soc/amd/common/block/pi/agesawrapper.c
@@ -26,7 +26,6 @@
 void __attribute__((weak)) SetMemParams(AMD_POST_PARAMS *PostParams) {}
 void __attribute__((weak)) OemPostParams(AMD_POST_PARAMS *PostParams) {}
 
-#ifndef __PRE_RAM__
 /* ACPI table pointers returned by AmdInitLate */
 static void *DmiTable;
 static void *AcpiPstate;
@@ -38,7 +37,6 @@
 static void *AcpiAlib;
 static void *AcpiIvrs;
 static void *AcpiCrat;
-#endif /* #ifndef __PRE_RAM__ */
 
 static AGESA_STATUS agesawrapper_readeventlog(UINT8 HeapStatus)
 {
@@ -244,7 +242,6 @@
 	return status;
 }
 
-#ifndef __PRE_RAM__
 VOID* agesawrapper_getlateinitptr (int pick)
 {
 	switch (pick) {
@@ -270,7 +267,6 @@
 		return NULL;
 	}
 }
-#endif /* #ifndef __PRE_RAM__ */
 
 AGESA_STATUS agesawrapper_amdinitmid(void)
 {
@@ -313,7 +309,6 @@
 	return status;
 }
 
-#ifndef __PRE_RAM__
 AGESA_STATUS agesawrapper_amdinitlate(void)
 {
 	AGESA_STATUS Status;
@@ -362,7 +357,6 @@
 	/* AmdReleaseStruct (&AmdParamStruct); */
 	return Status;
 }
-#endif /* #ifndef __PRE_RAM__ */
 
 AGESA_STATUS agesawrapper_amdlaterunaptask (
 	UINT32 Func,