[RFC/PATCH 2/4] Allow for non-Intel MSI implementations
Michael Ellerman
michael at ellerman.id.au
Fri Aug 18 18:13:29 EST 2006
From: Jake Moilanen <moilanen at austin.ibm.com>
This allows an architecture to provide its own MSI implementation
instead of msi.c and msi-apic.c. We will need this on IBM System-p
machines where the hypervisor controls the assignment and setup of
MSIs. A following patch will provide an MSI implementation for these
machines.
Signed-off-by: Jake Moilanen <moilanen at austin.ibm.com>
---
drivers/pci/Makefile | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
Index: git/drivers/pci/Makefile
===================================================================
--- git.orig/drivers/pci/Makefile
+++ git/drivers/pci/Makefile
@@ -27,9 +27,11 @@ obj-$(CONFIG_PPC64) += setup-bus.o
obj-$(CONFIG_MIPS) += setup-bus.o setup-irq.o
obj-$(CONFIG_X86_VISWS) += setup-irq.o
-msiobj-y := msi.o msi-apic.o
-msiobj-$(CONFIG_IA64_GENERIC) += msi-altix.o
-msiobj-$(CONFIG_IA64_SGI_SN2) += msi-altix.o
+msiobj-$(CONFIG_X86) := msi.o msi-apic.o
+msiobj-$(CONFIG_IA64) := msi.o msi-apic.o
+msiobj-$(CONFIG_IA64_GENERIC) := msi-altix.o
+msiobj-$(CONFIG_IA64_SGI_SN2) := msi-altix.o
+
obj-$(CONFIG_PCI_MSI) += $(msiobj-y)
#
More information about the Linuxppc-dev
mailing list