Since some people disapprove of white space cleanups mixed in regular commits
[coreboot.git] / src / arch / i386 / boot / pirq_routing.c
index 0c6269da559217a394b4289d1f7fbbdab2c751b9..4873f6d751323574ba10cf363eff623a780a9434 100644 (file)
@@ -3,10 +3,6 @@
 #include <string.h>
 #include <device/pci.h>
 
-#ifndef CONFIG_IRQ_SLOT_COUNT
-#warning "CONFIG_IRQ_SLOT_COUNT is not defined. PIRQ won't work correctly."
-#endif
-
 #if CONFIG_DEBUG
 static void check_pirq_routing_table(struct irq_routing_table *rt)
 {
@@ -30,7 +26,7 @@ static void check_pirq_routing_table(struct irq_routing_table *rt)
        printk(BIOS_DEBUG, "%s(): Interrupt Routing Table located at %p.\n",
                     __func__, addr);
 
-       
+
        sum = rt->checksum - sum;
 
        if (sum != rt->checksum) {
@@ -76,9 +72,9 @@ static int verify_copy_pirq_routing_table(unsigned long addr)
                }
        }
        printk(BIOS_INFO, "done\n");
-       
+
        check_pirq_routing_table((struct irq_routing_table *)addr);
-       
+
        return 0;
 }
 #endif