summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@cvs.openbsd.org>2011-06-09 19:34:43 +0000
committerMark Kettenis <kettenis@cvs.openbsd.org>2011-06-09 19:34:43 +0000
commit781242d28e6e2587daf3f0cdcb0c859515407c3c (patch)
tree95b627f0615814d90dc75851ee4a21cf5383638b /sys
parent1695c617c66490bcec742cf0e0b53dc1858b4982 (diff)
Backout MSI change. People are seeing watchdog timeouts, which must be caused
by missed interrupts. Commits to the FreeBSD driver suggest that the hardware has issues. Having MSI for this driver isn't terribly important anyway.
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/pci/if_re_pci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_re_pci.c b/sys/dev/pci/if_re_pci.c
index 54aa0433365..c05fceb94b6 100644
--- a/sys/dev/pci/if_re_pci.c
+++ b/sys/dev/pci/if_re_pci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_re_pci.c,v 1.33 2011/05/29 22:13:10 kettenis Exp $ */
+/* $OpenBSD: if_re_pci.c,v 1.34 2011/06/09 19:34:42 kettenis Exp $ */
/*
* Copyright (c) 2005 Peter Valchev <pvalchev@openbsd.org>
@@ -181,7 +181,7 @@ re_pci_attach(struct device *parent, struct device *self, void *aux)
}
/* Allocate interrupt */
- if (pci_intr_map_msi(pa, &ih) && pci_intr_map(pa, &ih)) {
+ if (pci_intr_map(pa, &ih)) {
printf(": couldn't map interrupt\n");
return;
}