mirror of https://github.com/acidanthera/audk.git
if module doesn't explicitly depend on specific Pci spec, it should include IndustryStandard/Pci.h rather than Pcixxx.h.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8998 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
9910cfe7db
commit
1a573c7ea2
|
@ -37,7 +37,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|||
#include <Library/BaseMemoryLib.h>
|
||||
#include <Library/DevicePathLib.h>
|
||||
|
||||
#include <IndustryStandard/Pci22.h>
|
||||
#include <IndustryStandard/Pci.h>
|
||||
|
||||
#include "VesaBiosExtensions.h"
|
||||
|
||||
|
|
|
@ -336,13 +336,13 @@ Returns:
|
|||
if (!EFI_ERROR (Status)) {
|
||||
if ((PCI_CLASS_SERIAL == Class[2]) &&
|
||||
(PCI_CLASS_SERIAL_USB == Class[1])) {
|
||||
if (PCI_CLASSC_PI_UHCI == Class[0]) {
|
||||
if (PCI_IF_UHCI == Class[0]) {
|
||||
//
|
||||
// Found the UHCI, then disable the legacy support
|
||||
//
|
||||
Command = 0;
|
||||
Status = PciIo->Pci.Write (PciIo, EfiPciIoWidthUint16, 0xC0, 1, &Command);
|
||||
} else if (PCI_CLASSC_PI_EHCI == Class[0]) {
|
||||
} else if (PCI_IF_EHCI == Class[0]) {
|
||||
//
|
||||
// Found the EHCI, then disable the legacy support
|
||||
//
|
||||
|
|
Loading…
Reference in New Issue