diff options
author | Marco Peereboom <marco@cvs.openbsd.org> | 2011-07-20 20:15:24 +0000 |
---|---|---|
committer | Marco Peereboom <marco@cvs.openbsd.org> | 2011-07-20 20:15:24 +0000 |
commit | 7152582178289458e1032c7607fcd2cc14e4b6c7 (patch) | |
tree | a8235b5d1ee2e3a11586a719546daa11f22afd11 /sys | |
parent | e7d1bedeb5dca6c932ae03e51703e2f78e1a23d3 (diff) |
For now, disable msi interrupts. Reading through the linux driver one
gets the impression that there are all kinds of preconditions and a
whitelist as well. I will be working on this whitelist but for now
disable it because it is hanging at boot for several people.
ok deraadt
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/mfi_pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/mfi_pci.c b/sys/dev/pci/mfi_pci.c index beab6cd6de6..2e12b7905a2 100644 --- a/sys/dev/pci/mfi_pci.c +++ b/sys/dev/pci/mfi_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mfi_pci.c,v 1.24 2011/07/01 21:51:12 deraadt Exp $ */ +/* $OpenBSD: mfi_pci.c,v 1.25 2011/07/20 20:15:23 marco Exp $ */ /* * Copyright (c) 2006 Marco Peereboom <marco@peereboom.us> * @@ -167,7 +167,7 @@ mfi_pci_attach(struct device *parent, struct device *self, void *aux) sc->sc_dmat = pa->pa_dmat; - if (pci_intr_map_msi(pa, &ih) != 0 && pci_intr_map(pa, &ih) != 0) { + if (pci_intr_map(pa, &ih) != 0) { printf(": can't map interrupt\n"); bus_space_unmap(sc->sc_iot, sc->sc_ioh, size); return; |