diff options
author | lgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-07-25 10:37:15 +0000 |
---|---|---|
committer | lgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-07-25 10:37:15 +0000 |
commit | 4ca9b6c4e7dbbcf94f21b54f41f761cefc6b1086 (patch) | |
tree | 9a160b769c30da11432d201c7ba7214ef452f650 /MdePkg/Include/Protocol/BusSpecificDriverOverride.h | |
parent | bb80e3b213f1d9409cd97a63e4d40191ce502912 (diff) | |
download | edk2-platforms-4ca9b6c4e7dbbcf94f21b54f41f761cefc6b1086.tar.xz |
Code Scrub for Protocol and Ppi Definition
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5564 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Protocol/BusSpecificDriverOverride.h')
-rw-r--r-- | MdePkg/Include/Protocol/BusSpecificDriverOverride.h | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/MdePkg/Include/Protocol/BusSpecificDriverOverride.h b/MdePkg/Include/Protocol/BusSpecificDriverOverride.h index 1c3fe35c47..14d24d31c4 100644 --- a/MdePkg/Include/Protocol/BusSpecificDriverOverride.h +++ b/MdePkg/Include/Protocol/BusSpecificDriverOverride.h @@ -1,7 +1,12 @@ /** @file
Bus Specific Driver Override protocol as defined in the UEFI 2.0 specification.
- Copyright (c) 2006, Intel Corporation
+ Bus drivers that have a bus specific algorithm for matching drivers to controllers are
+ required to produce this protocol for each controller. For example, a PCI Bus Driver will produce an
+ instance of this protocol for every PCI controller that has a PCI option ROM that contains one or
+ more UEFI drivers. The protocol instance is attached to the handle of the PCI controller.
+
+ Copyright (c) 2006 - 2008, Intel Corporation
All rights reserved. This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
@@ -55,6 +60,16 @@ EFI_STATUS //
// Interface structure for the Bus Specific Driver Override Protocol
//
+/**
+ @par Protocol Description:
+ This protocol matches one or more drivers to a controller. This protocol is produced by a bus driver,
+ and it is installed on the child handles of buses that require a bus specific algorithm for matching
+ drivers to controllers.
+
+ @param GetDriver
+ Uses a bus specific algorithm to retrieve a driver image handle for a controller.
+
+**/
struct _EFI_BUS_SPECIFIC_DRIVER_OVERRIDE_PROTOCOL {
EFI_BUS_SPECIFIC_DRIVER_OVERRIDE_GET_DRIVER GetDriver;
};
|