diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2004-06-28 12:34:21 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2004-06-28 12:34:21 +0000 |
commit | aa09396bb94ee5ee2c8cbc3d2daf7d32de25b3df (patch) | |
tree | f1f055bb5f0d1383b38c777c94aa886771e20dd0 /sys | |
parent | 114948b5e78bb27d5e20aeda486e529d798fa2ac (diff) |
do not force into io space on hppa as it's much slower
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/if_dc_pci.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/pci/if_dc_pci.c b/sys/dev/pci/if_dc_pci.c index 1aa2a07580f..1c2737641ae 100644 --- a/sys/dev/pci/if_dc_pci.c +++ b/sys/dev/pci/if_dc_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_dc_pci.c,v 1.42 2003/10/21 21:48:07 deraadt Exp $ */ +/* $OpenBSD: if_dc_pci.c,v 1.43 2004/06/28 12:34:20 mickey Exp $ */ /* * Copyright (c) 1997, 1998, 1999 @@ -76,7 +76,9 @@ #include <dev/ofw/openfirm.h> #endif +#ifndef __hppa__ #define DC_USEIOSPACE +#endif #include <dev/ic/dcreg.h> |