From 92d588b146c3f7a50f91310c3ac9d1d596ecc122 Mon Sep 17 00:00:00 2001 From: Carl-Daniel Hailfinger Date: Thu, 14 Feb 2008 20:54:00 +0000 Subject: [PATCH] Remove superfluous #if 1. The code has been enabled since it was committed, the #if 1 never served any purpose. Signed-off-by: Carl-Daniel Hailfinger Acked-by: Stefan Reinauer git-svn-id: svn://coreboot.org/repository/coreboot-v3@598 f3766cd6-281f-0410-b1cd-43a5c92072e9 --- device/pci_device.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/device/pci_device.c b/device/pci_device.c index 91ab189f23..3c66d57191 100644 --- a/device/pci_device.c +++ b/device/pci_device.c @@ -1271,7 +1271,6 @@ void pci_level_irq(unsigned char intNum) outb((unsigned char)(intBits >> 8), 0x4d1); /* This seems like an error but is not. */ -#if 1 if (inb(0x4d0) != (intBits & 0xff)) { printk(BIOS_ERR, "%s: lower order bits are wrong: want 0x%x, got 0x%x\n", @@ -1282,7 +1281,6 @@ void pci_level_irq(unsigned char intNum) "%s: lower order bits are wrong: want 0x%x, got 0x%x\n", __func__, (intBits >> 8) & 0xff, inb(0x4d1)); } -#endif } /**