aboutsummaryrefslogtreecommitdiff
path: root/src/vendorcode/intel/fsp/ivybridge_i89xx/include/fsptypes.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/vendorcode/intel/fsp/ivybridge_i89xx/include/fsptypes.h')
-rw-r--r--src/vendorcode/intel/fsp/ivybridge_i89xx/include/fsptypes.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/vendorcode/intel/fsp/ivybridge_i89xx/include/fsptypes.h b/src/vendorcode/intel/fsp/ivybridge_i89xx/include/fsptypes.h
index 8950367245..a3a54c0d2f 100644
--- a/src/vendorcode/intel/fsp/ivybridge_i89xx/include/fsptypes.h
+++ b/src/vendorcode/intel/fsp/ivybridge_i89xx/include/fsptypes.h
@@ -100,22 +100,17 @@ typedef struct {
#define TRUE ((BOOLEAN)(1==1))
#define FALSE ((BOOLEAN)(0==1))
-static inline void DebugDeadLoop(void) {
- for (;;);
-}
-
#define FSPAPI __attribute__((cdecl))
#define EFIAPI __attribute__((cdecl))
-#define _ASSERT(Expression) DebugDeadLoop()
#define ASSERT(Expression) \
do { \
if (!(Expression)) { \
- _ASSERT (Expression); \
+ for (;;); \
} \
} while (FALSE)
typedef UINT32 FSP_STATUS;
typedef UINT32 EFI_STATUS;
-#endif \ No newline at end of file
+#endif