summaryrefslogtreecommitdiff
path: root/MdePkg/Include/Protocol/EdidActive.h
diff options
context:
space:
mode:
Diffstat (limited to 'MdePkg/Include/Protocol/EdidActive.h')
-rw-r--r--MdePkg/Include/Protocol/EdidActive.h27
1 files changed, 14 insertions, 13 deletions
diff --git a/MdePkg/Include/Protocol/EdidActive.h b/MdePkg/Include/Protocol/EdidActive.h
index 32baf19..d593260 100644
--- a/MdePkg/Include/Protocol/EdidActive.h
+++ b/MdePkg/Include/Protocol/EdidActive.h
@@ -28,22 +28,23 @@
EDID information retrieved from the EFI_EDID_OVERRIDE_PROTOCOL if an override is
available, or an identical copy of the EDID information from the
EFI_EDID_DISCOVERED_PROTOCOL if no overrides are available.
-
- @param SizeOfEdid
- The size, in bytes, of the Edid buffer. 0 if no EDID information
- is available from the video output device. Otherwise, it must be a
- minimum of 128 bytes.
-
- @param Edid
- A pointer to a read-only array of bytes that contains the EDID
- information for an active video output device. This pointer is
- NULL if no EDID information is available for the video output
- device. The minimum size of a valid Edid buffer is 128 bytes.
- EDID information is defined in the E-DID EEPROM
- specification published by VESA (www.vesa.org).
**/
typedef struct {
+ ///
+ /// The size, in bytes, of the Edid buffer. 0 if no EDID information
+ /// is available from the video output device. Otherwise, it must be a
+ /// minimum of 128 bytes.
+ ///
UINT32 SizeOfEdid;
+
+ ///
+ /// A pointer to a read-only array of bytes that contains the EDID
+ /// information for an active video output device. This pointer is
+ /// NULL if no EDID information is available for the video output
+ /// device. The minimum size of a valid Edid buffer is 128 bytes.
+ /// EDID information is defined in the E-DID EEPROM
+ /// specification published by VESA (www.vesa.org).
+ ///
UINT8 *Edid;
} EFI_EDID_ACTIVE_PROTOCOL;