diff options
author | Angel Pons <th3fanbus@gmail.com> | 2020-07-07 21:57:36 +0200 |
---|---|---|
committer | Angel Pons <th3fanbus@gmail.com> | 2020-07-09 23:44:44 +0000 |
commit | 8dc5f3017d08fc0d84a87f5e961e0b56a2023693 (patch) | |
tree | 31c77b18829f4c60c83aac44a30dbd31effc19db /src/device | |
parent | dc4a8d026058b7c4ff5193c81bd90fe0b3fd2271 (diff) |
device/pci_device.c: Drop dead code
This code is not even being build-tested. Drop it before it grows moss.
Change-Id: Id3f9dd264e82f93a438422e388d70e3f88ae0df9
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/43210
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Michael Niewöhner
Diffstat (limited to 'src/device')
-rw-r--r-- | src/device/pci_device.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/device/pci_device.c b/src/device/pci_device.c index 032e15c669..3623c3b564 100644 --- a/src/device/pci_device.c +++ b/src/device/pci_device.c @@ -1631,11 +1631,6 @@ void pci_assign_irqs(struct device *dev, const unsigned char pIntAtoD[4]) pci_write_config8(dev, PCI_INTERRUPT_LINE, pIntAtoD[line - 1]); -#ifdef PARANOID_IRQ_ASSIGNMENTS - irq = pci_read_config8(pdev, PCI_INTERRUPT_LINE); - printk(BIOS_DEBUG, " Readback = %d\n", irq); -#endif - #if CONFIG(PC80_SYSTEM) /* Change to level triggered. */ i8259_configure_irq_trigger(pIntAtoD[line - 1], |