summaryrefslogtreecommitdiff
path: root/MdePkg/Include/IndustryStandard/Sal.h
diff options
context:
space:
mode:
authorklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>2008-08-14 03:21:03 +0000
committerklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>2008-08-14 03:21:03 +0000
commit1bc5d0217a6e9e6086a14cc00c075b9003bd3f0a (patch)
tree844992a2b181658fafa5ce999c6aaa1d9814857b /MdePkg/Include/IndustryStandard/Sal.h
parent3566565aa46899c26d5d8243966643f9a89a2133 (diff)
downloadedk2-platforms-1bc5d0217a6e9e6086a14cc00c075b9003bd3f0a.tar.xz
Use doxygen comment style for document entity such as struct, enum, variable that use /// but not //
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5645 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/IndustryStandard/Sal.h')
-rw-r--r--MdePkg/Include/IndustryStandard/Sal.h46
1 files changed, 24 insertions, 22 deletions
diff --git a/MdePkg/Include/IndustryStandard/Sal.h b/MdePkg/Include/IndustryStandard/Sal.h
index c66cbb97ef..77518321ad 100644
--- a/MdePkg/Include/IndustryStandard/Sal.h
+++ b/MdePkg/Include/IndustryStandard/Sal.h
@@ -15,25 +15,27 @@
#ifndef __SAL_API_H__
#define __SAL_API_H__
-//
-// FIT Types
-// Table 2-2 of Intel Itanium Processor Family System Abstraction Layer Specification December 2003
-//
+///
+/// FIT Types
+/// Table 2-2 of Intel Itanium Processor Family System Abstraction Layer Specification December 2003
+///
#define EFI_SAL_FIT_FIT_HEADER_TYPE 0x00
#define EFI_SAL_FIT_PAL_B_TYPE 0x01
-//
-// type from 0x02 to 0x0E is reserved.
-//
+
+///
+/// type from 0x02 to 0x0E is reserved.
+///
#define EFI_SAL_FIT_PAL_A_TYPE 0x0F
-//
-// OEM-defined type range is from 0x10 to 0x7E. Here we defined the PEI_CORE type as 0x10
-//
+
+///
+/// OEM-defined type range is from 0x10 to 0x7E. Here we defined the PEI_CORE type as 0x10
+///
#define EFI_SAL_FIT_PEI_CORE_TYPE 0x10
#define EFI_SAL_FIT_UNUSED_TYPE 0x7F
-//
-// EFI_SAL_STATUS
-//
+///
+/// EFI_SAL_STATUS
+///
typedef UINTN EFI_SAL_STATUS;
#define EFI_SAL_SUCCESS ((EFI_SAL_STATUS) 0)
@@ -55,9 +57,9 @@ typedef struct {
UINTN r11;
} SAL_RETURN_REGS;
-//
-// Delivery Mode of IPF CPU.
-//
+///
+/// Delivery Mode of IPF CPU.
+///
typedef enum {
EFI_DELIVERY_MODE_INT,
EFI_DELIVERY_MODE_MPreserved1,
@@ -616,9 +618,9 @@ typedef struct {
UINT8 SmbiosBcdTimeStamp[6];
} SAL_SMBIOS_DEVICE_ERROR_RECORD;
-//
-// Sal Platform Specific Errors Info.
-//
+///
+/// Sal Platform Specific Errors Info.
+///
#define SAL_PLATFORM_ERROR_RECORD_INFO \
{ \
0xe429faf7, 0x3cb7, 0x11d4, {0xbc, 0xa7, 0x0, 0x80, 0xc7, 0x3c, 0x88, 0x81 } \
@@ -644,9 +646,9 @@ typedef struct {
UINT8 OemComponentId[16];
} SAL_PLATFORM_SPECIFIC_ERROR_RECORD;
-//
-// Union of all the possible Sal Record Types
-//
+///
+/// Union of all the possible Sal Record Types
+///
typedef union {
SAL_RECORD_HEADER *RecordHeader;
SAL_PROCESSOR_ERROR_RECORD *SalProcessorRecord;