diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2006-10-04 05:16:45 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-04 10:55:28 -0400 |
commit | 4b2fabb9ec9b3b1cf5cf848a678058fb20c4d552 (patch) | |
tree | 82f592cde095d4cc0910db657ffd9eace0ea90d2 /drivers/pci/Makefile | |
parent | 2d3fcc1c54df2f49674e1f7c99d4800ed1d51902 (diff) |
[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>
Diffstat (limited to 'drivers/pci/Makefile')
-rw-r--r-- | drivers/pci/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/pci/Makefile b/drivers/pci/Makefile index f2d152b818f0..983d0f86aa33 100644 --- a/drivers/pci/Makefile +++ b/drivers/pci/Makefile | |||
@@ -27,7 +27,8 @@ obj-$(CONFIG_PPC64) += setup-bus.o | |||
27 | obj-$(CONFIG_MIPS) += setup-bus.o setup-irq.o | 27 | obj-$(CONFIG_MIPS) += setup-bus.o setup-irq.o |
28 | obj-$(CONFIG_X86_VISWS) += setup-irq.o | 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 | msiobj-$(CONFIG_IA64_GENERIC) += msi-altix.o | 32 | msiobj-$(CONFIG_IA64_GENERIC) += msi-altix.o |
32 | msiobj-$(CONFIG_IA64_SGI_SN2) += msi-altix.o | 33 | msiobj-$(CONFIG_IA64_SGI_SN2) += msi-altix.o |
33 | obj-$(CONFIG_PCI_MSI) += $(msiobj-y) | 34 | obj-$(CONFIG_PCI_MSI) += $(msiobj-y) |