From 5ed9e6701396220421058bbbce258b034d04d7f0 Mon Sep 17 00:00:00 2001 From: RaymondY Date: Sat, 23 Dec 2023 23:25:07 +0800 Subject: [PATCH] Update 52_write_the_uefi_driver_entry_point.md --- 5_uefi_drivers/52_write_the_uefi_driver_entry_point.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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.