diff options
author | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-12-16 15:31:58 +0000 |
---|---|---|
committer | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-12-16 15:31:58 +0000 |
commit | e89ec8f6853c16fd153b63c56842fa388a11b0c3 (patch) | |
tree | 22c7591e07a95bdbd283188db161c57e8b24a41e /IntelFrameworkPkg/Include/Framework/Legacy16.h | |
parent | f02bd3768c1aba2d4e023c7623dff4dab2dbb1df (diff) | |
download | edk2-platforms-e89ec8f6853c16fd153b63c56842fa388a11b0c3.tar.xz |
Clean up to update the reference of the these macros:
EFI_SIGNATURE_16 -> SIGNATURE_16
EFI_SIGNATURE_32 -> SIGNATURE_32
EFI_SIGNATURE_64 -> SIGNATURE_64
EFI_FIELD_OFFSET -> OFFSET_OF
EFI_MAX_BIT -> MAX_BIT
EFI_MAX_ADDRESS -> MAX_ADDRESS
These macros are not defined in UEFI spec. It makes more sense to use the equivalent macros in Base.h to avoid alias.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7051 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'IntelFrameworkPkg/Include/Framework/Legacy16.h')
-rw-r--r-- | IntelFrameworkPkg/Include/Framework/Legacy16.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IntelFrameworkPkg/Include/Framework/Legacy16.h b/IntelFrameworkPkg/Include/Framework/Legacy16.h index 6ccb51d600..186c63bf32 100644 --- a/IntelFrameworkPkg/Include/Framework/Legacy16.h +++ b/IntelFrameworkPkg/Include/Framework/Legacy16.h @@ -38,7 +38,7 @@ typedef UINT8 PARALLEL_MODE; // signature "$EFI"
///////////////////////////////////////////////////////////////////////////////
-#define EFI_COMPATIBILITY16_TABLE_SIGNATURE EFI_SIGNATURE_32 ('I', 'F', 'E', '$')
+#define EFI_COMPATIBILITY16_TABLE_SIGNATURE SIGNATURE_32 ('I', 'F', 'E', '$')
typedef struct {
UINT32 Signature; // "$EFI"
|