summaryrefslogtreecommitdiff
path: root/src/southbridge/amd/cimx_wrapper/sb800/Amd.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/southbridge/amd/cimx_wrapper/sb800/Amd.h')
-rw-r--r--src/southbridge/amd/cimx_wrapper/sb800/Amd.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/southbridge/amd/cimx_wrapper/sb800/Amd.h b/src/southbridge/amd/cimx_wrapper/sb800/Amd.h
index ee140d4adf..93a6234059 100644
--- a/src/southbridge/amd/cimx_wrapper/sb800/Amd.h
+++ b/src/southbridge/amd/cimx_wrapper/sb800/Amd.h
@@ -49,7 +49,15 @@
#define IOCFC 0xCFC
#define IN
#define OUT
-#define IMAGE_SIGNATURE 'DMA$'
+
+#ifndef Int16FromChar
+#define Int16FromChar(a,b) ((a) << 0 | (b) << 8)
+#endif
+#ifndef Int32FromChar
+#define Int32FromChar(a,b,c,d) ((a) << 0 | (b) << 8 | (c) << 16 | (d) << 24)
+#endif
+
+#define IMAGE_SIGNATURE Int32FromChar ('$', 'A', 'M', 'D')
typedef UINTN AGESA_STATUS;