diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-07-10 16:53:21 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-07-10 18:55:33 +0200 |
commit | 5548ed1135842d1993a4ba699377a8a3c65dd568 (patch) | |
tree | 1ae79e5f24789c87477261dc7c3f6e2a284a2097 /arch/x86/pci | |
parent | 5ab74722a4656612d1f3b087b1afd91133ec0eeb (diff) | |
download | linux-3.10-5548ed1135842d1993a4ba699377a8a3c65dd568.tar.gz linux-3.10-5548ed1135842d1993a4ba699377a8a3c65dd568.tar.bz2 linux-3.10-5548ed1135842d1993a4ba699377a8a3c65dd568.zip |
x86, VisWS: turn into generic arch, install proper PCI quirk
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/pci')
-rw-r--r-- | arch/x86/pci/visws.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/arch/x86/pci/visws.c b/arch/x86/pci/visws.c index 2e022210a63..9b883890c0b 100644 --- a/arch/x86/pci/visws.c +++ b/arch/x86/pci/visws.c @@ -8,6 +8,7 @@ #include <linux/pci.h> #include <linux/init.h> +#include <asm/setup.h> #include "cobalt.h" #include "lithium.h" @@ -107,7 +108,11 @@ static int __init pci_visws_init(void) static __init int pci_subsys_init(void) { - return -1; + if (!is_visws_box()) + return -1; + + pcibios_enable_irq = &pci_visws_enable_irq; + pcibios_disable_irq = &pci_visws_disable_irq; pci_visws_init(); pcibios_init(); |