diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2003-04-10 10:11:25 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2003-04-10 10:11:25 +0000 |
commit | c8b4f9400f7d8ea72514ad5564c07a43bf2313e5 (patch) | |
tree | 40f5defeec5b688688e20a86895fdcd76f65003b /sys/dev/isa/aha.c | |
parent | 6fe8f82982b08693b335dbdf387410f1ceec3521 (diff) |
Proper use of bus_space makes the need for <machine/pio.h> obsolete, which
is good since not all isa capable platforms provide such a file.
Diffstat (limited to 'sys/dev/isa/aha.c')
-rw-r--r-- | sys/dev/isa/aha.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/isa/aha.c b/sys/dev/isa/aha.c index 662cede8f8f..e8236973c6e 100644 --- a/sys/dev/isa/aha.c +++ b/sys/dev/isa/aha.c @@ -1,4 +1,4 @@ -/* $OpenBSD: aha.c,v 1.49 2002/10/07 18:35:57 mickey Exp $ */ +/* $OpenBSD: aha.c,v 1.50 2003/04/10 10:11:24 miod Exp $ */ /* $NetBSD: aha.c,v 1.11 1996/05/12 23:51:23 mycroft Exp $ */ #undef AHADIAG @@ -64,7 +64,6 @@ #include <uvm/uvm_extern.h> #include <machine/intr.h> -#include <machine/pio.h> #include <machine/bus.h> #include <scsi/scsi_all.h> |