diff options
Diffstat (limited to 'IntelFrameworkModulePkg/Library')
2 files changed, 4 insertions, 3 deletions
diff --git a/IntelFrameworkModulePkg/Library/DxeReportStatusCodeLibFramework/ReportStatusCodeLibInternal.h b/IntelFrameworkModulePkg/Library/DxeReportStatusCodeLibFramework/ReportStatusCodeLibInternal.h index 25262bc0b3..5229061ff2 100644 --- a/IntelFrameworkModulePkg/Library/DxeReportStatusCodeLibFramework/ReportStatusCodeLibInternal.h +++ b/IntelFrameworkModulePkg/Library/DxeReportStatusCodeLibFramework/ReportStatusCodeLibInternal.h @@ -32,6 +32,7 @@ #include <FrameworkModuleBase.h>
#include <DebugInfo.h>
+extern EFI_REPORT_STATUS_CODE mReportStatusCode;
/**
Locate he report status code service.
@@ -129,7 +130,5 @@ InternalReportStatusCodeEx ( IN UINTN ExtendedDataSize
);
-extern EFI_REPORT_STATUS_CODE mReportStatusCode;
-
#endif // __REPORT_STATUS_CODE_LIB_INTERNAL__H
diff --git a/IntelFrameworkModulePkg/Library/SmmRuntimeDxeReportStatusCodeLibFramework/ReportStatusCodeLibInternal.h b/IntelFrameworkModulePkg/Library/SmmRuntimeDxeReportStatusCodeLibFramework/ReportStatusCodeLibInternal.h index 2bc73ba190..35d5faedd1 100644 --- a/IntelFrameworkModulePkg/Library/SmmRuntimeDxeReportStatusCodeLibFramework/ReportStatusCodeLibInternal.h +++ b/IntelFrameworkModulePkg/Library/SmmRuntimeDxeReportStatusCodeLibFramework/ReportStatusCodeLibInternal.h @@ -33,6 +33,8 @@ #include <FrameworkModuleBase.h>
#include <DebugInfo.h>
+extern EFI_REPORT_STATUS_CODE mReportStatusCode;
+
/**
Locatet he report status code service.
@@ -129,7 +131,7 @@ InternalReportStatusCodeEx ( IN UINTN ExtendedDataSize
);
-extern EFI_REPORT_STATUS_CODE mReportStatusCode;
+
#endif // __REPORT_STATUS_CODE_LIB_INTERNAL__H
|