summaryrefslogtreecommitdiffstats
path: root/src/vendorcode/amd/agesa/f15tn/Proc
diff options
context:
space:
mode:
Diffstat (limited to 'src/vendorcode/amd/agesa/f15tn/Proc')
-rw-r--r--src/vendorcode/amd/agesa/f15tn/Proc/IDS/Debug/IdsDebug.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/vendorcode/amd/agesa/f15tn/Proc/IDS/Debug/IdsDebug.c b/src/vendorcode/amd/agesa/f15tn/Proc/IDS/Debug/IdsDebug.c
index b5c26aefebc3..45b25a41330e 100644
--- a/src/vendorcode/amd/agesa/f15tn/Proc/IDS/Debug/IdsDebug.c
+++ b/src/vendorcode/amd/agesa/f15tn/Proc/IDS/Debug/IdsDebug.c
@@ -78,34 +78,6 @@ IdsAgesaTestPoint (
}
/**
- * IDS Backend Function for ASSERT
- *
- * Halt execution with stop code display. Stop Code is displayed on port 80, with rotation so that
- * it is visible on 8, 16, or 32 bit display. The stop code is alternated with 0xDEAD on the display,
- * to help distinguish the stop code from a post code loop.
- * Additional features may be available if using simulation.
- *
- * @param[in] FileCode File code(define in FILECODE.h) mix with assert Line num.
- *
- * @retval TRUE No error
- **/
-BOOLEAN
-IdsAssert (
- IN UINT32 FileCode
- )
-{
- UINT32 file;
- UINT32 line;
-
- file = (FileCode >> 16);
- line = (FileCode & 0xFFFF);
- IDS_HDT_CONSOLE (MAIN_FLOW, "ASSERT on File[%x] Line[%x]\n", (UINTN) file, (UINTN) line);
- IDS_HDT_CONSOLE_FLUSH_BUFFER (NULL);
- IDS_HDT_CONSOLE_ASSERT (FileCode);
- return TRUE;
-}
-
-/**
* IDS Backend Function for Memory timeout control
*
* This function is used to override Memory timeout control.