From 2f2c7a9146d5060826508b37ffff006732712c9f Mon Sep 17 00:00:00 2001 From: mjacob Date: Wed, 15 Nov 2006 20:18:09 +0000 Subject: [PATCH] Turn off MSI until some testing is done. --- sys/dev/mpt/mpt_pci.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys/dev/mpt/mpt_pci.c b/sys/dev/mpt/mpt_pci.c index e3f8f7639f30..0243d1f9c78d 100644 --- a/sys/dev/mpt/mpt_pci.c +++ b/sys/dev/mpt/mpt_pci.c @@ -512,6 +512,7 @@ mpt_pci_attach(device_t dev) /* Get a handle to the interrupt */ iqd = 0; +#if 0 if (pci_msi_count(dev) == 1) { mpt->pci_msi_count = 1; if (pci_alloc_msi(dev, &mpt->pci_msi_count) == 0) @@ -519,6 +520,7 @@ mpt_pci_attach(device_t dev) else mpt->pci_msi_count = 0; } +#endif mpt->pci_irq = bus_alloc_resource_any(dev, SYS_RES_IRQ, &iqd, RF_ACTIVE | RF_SHAREABLE); if (mpt->pci_irq == NULL) {