mirror of https://github.com/acidanthera/audk.git
Minor clean-up. Change PCI Device ID check from 7110 to 7000-7FFF.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7622 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
a9fd67211e
commit
c860b4634d
|
@ -1,26 +1,16 @@
|
||||||
/*++
|
/** @file
|
||||||
|
|
||||||
Copyright (c) 2006, 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
|
|
||||||
http://opensource.org/licenses/bsd-license.php
|
|
||||||
|
|
||||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
||||||
|
|
||||||
|
|
||||||
Module Name:
|
|
||||||
|
|
||||||
PcatIsaAcpi.c
|
|
||||||
|
|
||||||
Abstract:
|
|
||||||
|
|
||||||
EFI PCAT ISA ACPI Driver for a Generic PC Platform
|
EFI PCAT ISA ACPI Driver for a Generic PC Platform
|
||||||
|
|
||||||
Revision History
|
Copyright (c) 2006, 2009, 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
|
||||||
|
http://opensource.org/licenses/bsd-license.php
|
||||||
|
|
||||||
--*/
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||||
|
|
||||||
|
**/
|
||||||
|
|
||||||
#include "PcatIsaAcpi.h"
|
#include "PcatIsaAcpi.h"
|
||||||
|
|
||||||
|
@ -124,7 +114,7 @@ Returns:
|
||||||
//
|
//
|
||||||
if (Pci.Hdr.ClassCode[1] == PCI_CLASS_BRIDGE_ISA_PDECODE &&
|
if (Pci.Hdr.ClassCode[1] == PCI_CLASS_BRIDGE_ISA_PDECODE &&
|
||||||
Pci.Hdr.VendorId == 0x8086 &&
|
Pci.Hdr.VendorId == 0x8086 &&
|
||||||
Pci.Hdr.DeviceId == 0x7110) {
|
(Pci.Hdr.DeviceId & 0xF000) == 0x7000) {
|
||||||
Status = EFI_SUCCESS;
|
Status = EFI_SUCCESS;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue