diff options
author | Martin Reindl <martin@cvs.openbsd.org> | 2005-03-24 17:15:29 +0000 |
---|---|---|
committer | Martin Reindl <martin@cvs.openbsd.org> | 2005-03-24 17:15:29 +0000 |
commit | fdd6ed5a5ae543e1968034b2cb8d4033897bbe6d (patch) | |
tree | d4f07a497f43ddb999c2bfab793cd39a76f82b82 /sys/dev | |
parent | 2c51472406921b343693b9a8995a20a4661c3f0d (diff) |
enable memory-mapped i/o everywhere but on i386
suggested by mickey@, ok krw@, deraadt@, also tested by miod@
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/pci/ahc_pci.c | 6 |
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 |