aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/pci/visws.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/pci/visws.c')
-rw-r--r--arch/x86/pci/visws.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/arch/x86/pci/visws.c b/arch/x86/pci/visws.c
index 2e022210a632..9b883890c0b2 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();