Commit 4b2fabb9ec9b3b1cf5cf848a678058fb20c4d552

Authored by Eric W. Biederman
Committed by Linus Torvalds
1 parent 2d3fcc1c54

[PATCH] genirq: msi: only build msi-apic.c on ia64

After the previous changes ia64 is the only architecture useing msi-apic.c

[akpm@osdl.org: unbreak MSI on ia64]
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Rajesh Shah <rajesh.shah@intel.com>
Cc: Andi Kleen <ak@muc.de>
Cc: "Protasevich, Natalie" <Natalie.Protasevich@UNISYS.com>
Cc: "Luck, Tony" <tony.luck@intel.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

Showing 1 changed file with 2 additions and 1 deletions Side-by-side Diff

drivers/pci/Makefile
... ... @@ -27,7 +27,8 @@
27 27 obj-$(CONFIG_MIPS) += setup-bus.o setup-irq.o
28 28 obj-$(CONFIG_X86_VISWS) += setup-irq.o
29 29  
30   -msiobj-y := msi.o msi-apic.o
  30 +msiobj-y := msi.o
  31 +msiobj-$(CONFIG_IA64) += msi-apic.o
31 32 msiobj-$(CONFIG_IA64_GENERIC) += msi-altix.o
32 33 msiobj-$(CONFIG_IA64_SGI_SN2) += msi-altix.o
33 34 obj-$(CONFIG_PCI_MSI) += $(msiobj-y)