diff --git a/5_uefi_drivers/52_write_the_uefi_driver_entry_point.md b/5_uefi_drivers/52_write_the_uefi_driver_entry_point.md index 16134be..90bc25b 100644 --- a/5_uefi_drivers/52_write_the_uefi_driver_entry_point.md +++ b/5_uefi_drivers/52_write_the_uefi_driver_entry_point.md @@ -40,8 +40,7 @@ point. | --------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | Driver Binding Protocol | Provides functions for starting and stopping the driver, as well as a function for determining if the driver can manage a particular controller. The UEFI Driver Model requires this protocol. | | Component Name Protocol | Provides functions for retrieving a human-readable name of a driver and the controllers that a driver is managing. While the UEFI Specification lists this protocol as optional, the _Developer's Interface Guide for 64-bit Intel Architecturebased Servers_ (hereafter referred to as "_DIG64 specification_" or "_DIG64_") lists this protocol as required for Itanium-based platforms. | -| Driver Diagnostics Protocol | Provides functions for executing diagnostic functions on the devices that a driver is managing. While the _UEFI_ | -| | _Specification_ lists this protocol as optional, _DIG64_ lists this protocol as required for Itanium-based platforms. | +| Driver Diagnostics Protocol | Provides functions for executing diagnostic functions on the devices that a driver is managing. While the _UEFI Specification_ lists this protocol as optional, _DIG64_ lists this protocol as required for Itanium-based platforms. | The UefiLib library class is provided to simplify the driver entry point of a UEFI driver.