After tests on 2 different AMD platforms with several

different cards (SAS, 4Gb FC), MSI seems to work with
the cards.

This was of some concern because some  PCI cards
claim to work with MSI but don't.
This commit is contained in:
Matt Jacob 2006-11-16 02:40:18 +00:00
parent 7ee07175af
commit eba891af5b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=164326

View File

@ -512,7 +512,6 @@ 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)
@ -520,7 +519,6 @@ 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) {