Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update 52_write_the_uefi_driver_entry_point.md #8

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions 5_uefi_drivers/52_write_the_uefi_driver_entry_point.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down