diff options
author | Laszlo Ersek <lersek@redhat.com> | 2015-09-22 11:18:36 +0000 |
---|---|---|
committer | lersek <lersek@Edk2> | 2015-09-22 11:18:36 +0000 |
commit | 8a6e6db42f571bee7331ffe25f5603a6d44da335 (patch) | |
tree | b439407271f40073044d4622c40cb094af2c23af /PcAtChipsetPkg | |
parent | 2dc5090d76ad2e95eb55bbb6f6e6423f5c635cbd (diff) | |
download | edk2-8a6e6db42f571bee7331ffe25f5603a6d44da335.tar.gz edk2-8a6e6db42f571bee7331ffe25f5603a6d44da335.tar.bz2 edk2-8a6e6db42f571bee7331ffe25f5603a6d44da335.zip |
PcAtChipsetPkg: IdeControllerDxe: fix protocol usage hints in the INF file
IdeControllerDxe installs EFI_IDE_CONTROLLER_INIT_PROTOCOL interface(s),
and consumes PciIo. The comments in the INF file state the opposite at the
moment, fix them.
Cc: Alexander Graf <agraf@suse.de>
Cc: Reza Jelveh <reza.jelveh@tuhh.de>
Cc: Jordan Justen <jordan.l.justen@intel.com>
Cc: Ruiyu Ni <ruiyu.ni@intel.com>
Cc: Hannes Reinecke <hare@suse.de>
Cc: Gabriel L. Somlo <somlo@cmu.edu>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Feng Tian <feng.tian@intel.com>
Tested-by: Gabriel Somlo <somlo@cmu.edu>
Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@18530 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'PcAtChipsetPkg')
-rw-r--r-- | PcAtChipsetPkg/Bus/Pci/IdeControllerDxe/IdeControllerDxe.inf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/PcAtChipsetPkg/Bus/Pci/IdeControllerDxe/IdeControllerDxe.inf b/PcAtChipsetPkg/Bus/Pci/IdeControllerDxe/IdeControllerDxe.inf index 5e917c8d13..0184bf40f6 100644 --- a/PcAtChipsetPkg/Bus/Pci/IdeControllerDxe/IdeControllerDxe.inf +++ b/PcAtChipsetPkg/Bus/Pci/IdeControllerDxe/IdeControllerDxe.inf @@ -46,7 +46,7 @@ UefiBootServicesTableLib
[Protocols]
- gEfiPciIoProtocolGuid ## BY_START
- gEfiIdeControllerInitProtocolGuid ## TO_START
+ gEfiPciIoProtocolGuid ## TO_START
+ gEfiIdeControllerInitProtocolGuid ## BY_START
[UserExtensions.TianoCore."ExtraFiles"]
IdeControllerExtra.uni
|