diff options
Diffstat (limited to 'EdkModulePkg/Bus/Pci/PciBus/Dxe')
-rw-r--r-- | EdkModulePkg/Bus/Pci/PciBus/Dxe/PciDeviceSupport.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciDeviceSupport.c b/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciDeviceSupport.c index 3b49595130..cbbc00b183 100644 --- a/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciDeviceSupport.c +++ b/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciDeviceSupport.c @@ -338,14 +338,10 @@ Returns: //
// Force Interrupt line to "Unknown" or "No Connection"
- // based on the PCI spec, the Interrupt line for x86 should be set as 0xFF for unknown.
//
PciIo = &(PciIoDevice->PciIo);
-#ifndef MDE_CPU_IPF
Data8 = PCI_INT_LINE_UNKNOWN;
-#else
- Data8 = 0;
-#endif
+
PciIo->Pci.Write (PciIo, EfiPciIoWidthUint8, 0x3C, 1, &Data8);
//
|