summaryrefslogtreecommitdiff
path: root/MdePkg/Include/Protocol/EdidDiscovered.h
diff options
context:
space:
mode:
Diffstat (limited to 'MdePkg/Include/Protocol/EdidDiscovered.h')
-rw-r--r--MdePkg/Include/Protocol/EdidDiscovered.h27
1 files changed, 14 insertions, 13 deletions
diff --git a/MdePkg/Include/Protocol/EdidDiscovered.h b/MdePkg/Include/Protocol/EdidDiscovered.h
index cf37653..c1eafae 100644
--- a/MdePkg/Include/Protocol/EdidDiscovered.h
+++ b/MdePkg/Include/Protocol/EdidDiscovered.h
@@ -26,22 +26,23 @@
/**
@par Protocol Description:
This protocol contains the EDID information retrieved from a video output device.
-
- @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_DISCOVERED_PROTOCOL;