From 0ddf9163b23aae100b10a712d7b0ec76fb799601 Mon Sep 17 00:00:00 2001 From: Mark Kettenis Date: Sun, 5 Jun 2011 22:14:23 +0000 Subject: Revert previous commit; it makes us run out of interrupt slots too fast on amd64, and fixing things is going to take some time. ok deraadt@ --- sys/dev/pci/ppb.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'sys/dev/pci/ppb.c') diff --git a/sys/dev/pci/ppb.c b/sys/dev/pci/ppb.c index 805966a98b9..286dac1533f 100644 --- a/sys/dev/pci/ppb.c +++ b/sys/dev/pci/ppb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ppb.c,v 1.50 2011/05/30 22:16:29 kettenis Exp $ */ +/* $OpenBSD: ppb.c,v 1.51 2011/06/05 22:14:22 kettenis Exp $ */ /* $NetBSD: ppb.c,v 1.16 1997/06/06 23:48:05 thorpej Exp $ */ /* @@ -169,8 +169,7 @@ ppbattach(struct device *parent, struct device *self, void *aux) /* Check for PCI Express capabilities and setup hotplug support. */ if (pci_get_capability(pc, pa->pa_tag, PCI_CAP_PCIEXPRESS, &sc->sc_cap_off, ®) && (reg & PCI_PCIE_XCAP_SI)) { - if (pci_intr_map_msi(pa, &ih) == 0 || - pci_intr_map(pa, &ih) == 0) + if (pci_intr_map(pa, &ih) == 0) sc->sc_intrhand = pci_intr_establish(pc, ih, IPL_BIO, ppb_intr, sc, self->dv_xname); -- cgit v1.2.3