From 58595b52b3c6086ba6eadf2a4740ae4df579c26b Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Wed, 30 Apr 2003 19:41:25 +0000 Subject: [PATCH] fixed typo with IRQ_SLOT_COUNT --- src/arch/i386/lib/pirq_routing.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arch/i386/lib/pirq_routing.c b/src/arch/i386/lib/pirq_routing.c index dd0e360c0d..73aa11e2af 100644 --- a/src/arch/i386/lib/pirq_routing.c +++ b/src/arch/i386/lib/pirq_routing.c @@ -13,7 +13,7 @@ void check_pirq_routing_table(void) printk_info("Checking IRQ routing tables...\n"); -#ifdef(IRQ_SLOT_COUNT) +#ifdef IRQ_SLOT_COUNT if (sizeof(intel_irq_routing_table) != intel_irq_routing_table.size) { printk_warning("Inconsistent IRQ routing table size\n"); }