aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge/amd/amdht/comlib.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/northbridge/amd/amdht/comlib.h')
-rw-r--r--src/northbridge/amd/amdht/comlib.h16
1 files changed, 3 insertions, 13 deletions
diff --git a/src/northbridge/amd/amdht/comlib.h b/src/northbridge/amd/amdht/comlib.h
index d497fd28e4..dbc19f3cfa 100644
--- a/src/northbridge/amd/amdht/comlib.h
+++ b/src/northbridge/amd/amdht/comlib.h
@@ -16,25 +16,15 @@
#ifndef COMLIB_H
#define COMLIB_H
-#undef FILECODE
-#define FILECODE 0xF001
-
+#include <assert.h>
#include <inttypes.h>
#include <stdlib.h>
#include "porting.h"
-#ifdef AMD_DEBUG
- #define ASSERT(x) ((x) ? 0 : ErrorStop(((uint32)FILECODE)*0x10000 + ((__LINE__)%10) + (((__LINE__/10)%10)*0x10) + (((__LINE__/100)%10)*0x100) +(((__LINE__/1000)%10)*0x1000)))
-#else
- #define ASSERT(x)
-#endif
-
#ifdef AMD_DEBUG_ERROR_STOP
- /* Macro to aid debugging, causes program to halt and display the line number of the halt in decimal */
- #define STOP_HERE ErrorStop(((uint32)FILECODE)*0x10000 + ((__LINE__)%10) + (((__LINE__/10)%10)*0x10) + (((__LINE__/100)%10)*0x100) +(((__LINE__/1000)%10)*0x1000))
+ /* Macro to aid debugging, causes program to halt and display the line number of the halt */
+ #define STOP_HERE ASSERT(0)
#else
- /* Macro to aid debugging, causes program to halt and display the line number of the halt in decimal */
- /* #define STOP_HERE STOP_HERE_OnlyForDebugUse */
#define STOP_HERE
#endif