[PATCH] pci: intr_remapping: Fix bogus CONFIG ifdef

From: Thomas Gleixner
Date: Sun Oct 10 2010 - 06:03:12 EST


The interrupt remapping code selects the dynamic allocation of the
irq_2_iommu structure depending on CONFIG_GENERIC_HARDIRQS. Introduced
by commit d7e51e668 (sparseirq: make some func to be used with genirq)

The correct config switch is CONFIG_SPARSE_IRQ.

Signed-off-by: Thomas Gleixner <tglx@xxxxxxxxxxxxx>
---
diff --git a/drivers/pci/intr_remapping.c b/drivers/pci/intr_remapping.c
index fd1d286..af63cc2 100644
--- a/drivers/pci/intr_remapping.c
+++ b/drivers/pci/intr_remapping.c
@@ -53,7 +53,7 @@ struct irq_2_iommu {
u8 irte_mask;
};

-#ifdef CONFIG_GENERIC_HARDIRQS
+#ifdef CONFIG_SPARSE_IRQ
static struct irq_2_iommu *get_one_free_irq_2_iommu(int node)
{
struct irq_2_iommu *iommu;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/