summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormartin <martin@openbsd.org>2005-03-24 17:15:28 +0000
committermartin <martin@openbsd.org>2005-03-24 17:15:28 +0000
commitdb6da378be082d80c5f4730fba580b73d4e02b3e (patch)
tree74a34f22c4b04a9c0b75a48778910f4236c71642
parentUnbreak tree, mono_time may no longer be used because of timecounters. (diff)
downloadwireguard-openbsd-db6da378be082d80c5f4730fba580b73d4e02b3e.tar.xz
wireguard-openbsd-db6da378be082d80c5f4730fba580b73d4e02b3e.zip
enable memory-mapped i/o everywhere but on i386
suggested by mickey@, ok krw@, deraadt@, also tested by miod@
-rw-r--r--sys/dev/pci/ahc_pci.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pci/ahc_pci.c b/sys/dev/pci/ahc_pci.c
index f10edaf313f..ac95c97cb35 100644
--- a/sys/dev/pci/ahc_pci.c
+++ b/sys/dev/pci/ahc_pci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ahc_pci.c,v 1.47 2005/02/21 03:10:57 martin Exp $ */
+/* $OpenBSD: ahc_pci.c,v 1.48 2005/03/24 17:15:28 martin Exp $ */
/*
* Product specific probe and attach routines for:
* 3940, 2940, aic7895, aic7890, aic7880,
@@ -40,7 +40,7 @@
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGES.
*
- * $Id: ahc_pci.c,v 1.47 2005/02/21 03:10:57 martin Exp $
+ * $Id: ahc_pci.c,v 1.48 2005/03/24 17:15:28 martin Exp $
*
* //depot/aic7xxx/aic7xxx/aic7xxx_pci.c#57 $
*
@@ -75,7 +75,7 @@
#include <dev/ic/smc93cx6var.h>
-#if defined (__hppa__) || (__macppc__)
+#ifndef __i386__
#define AHC_ALLOW_MEMIO
#endif