diff options
author | 2003-04-10 10:11:24 +0000 | |
---|---|---|
committer | 2003-04-10 10:11:24 +0000 | |
commit | f20182fbcd3afe176e0adc4aef74ee4ca83f62ea (patch) | |
tree | 69be19e355cf7074e9a41d9808ea290bd7b12048 | |
parent | woah. last commit contained way too much. revert, and apply only the change intended. (diff) | |
download | wireguard-openbsd-f20182fbcd3afe176e0adc4aef74ee4ca83f62ea.tar.xz wireguard-openbsd-f20182fbcd3afe176e0adc4aef74ee4ca83f62ea.zip |
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.
-rw-r--r-- | sys/dev/isa/aha.c | 3 | ||||
-rw-r--r-- | sys/dev/isa/ics2101.c | 3 | ||||
-rw-r--r-- | sys/dev/isa/if_eg.c | 3 | ||||
-rw-r--r-- | sys/dev/isa/if_ie.c | 3 |
4 files changed, 4 insertions, 8 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> diff --git a/sys/dev/isa/ics2101.c b/sys/dev/isa/ics2101.c index 9a9019849cf..24a72fd19bc 100644 --- a/sys/dev/isa/ics2101.c +++ b/sys/dev/isa/ics2101.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ics2101.c,v 1.5 2002/03/14 01:26:56 millert Exp $ */ +/* $OpenBSD: ics2101.c,v 1.6 2003/04/10 10:11:24 miod Exp $ */ /* $NetBSD: ics2101.c,v 1.6 1997/10/09 07:57:23 jtc Exp $ */ /*- @@ -47,7 +47,6 @@ #include <sys/buf.h> #include <machine/cpu.h> -#include <machine/pio.h> #include <sys/audioio.h> #include <dev/audio_if.h> diff --git a/sys/dev/isa/if_eg.c b/sys/dev/isa/if_eg.c index 41699483bc7..2ed458eab94 100644 --- a/sys/dev/isa/if_eg.c +++ b/sys/dev/isa/if_eg.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_eg.c,v 1.24 2003/01/27 19:09:12 jason Exp $ */ +/* $OpenBSD: if_eg.c,v 1.25 2003/04/10 10:11:24 miod Exp $ */ /* $NetBSD: if_eg.c,v 1.26 1996/05/12 23:52:27 mycroft Exp $ */ /* @@ -71,7 +71,6 @@ #include <machine/cpu.h> #include <machine/intr.h> -#include <machine/pio.h> #include <dev/isa/isavar.h> #include <dev/isa/if_egreg.h> diff --git a/sys/dev/isa/if_ie.c b/sys/dev/isa/if_ie.c index 9910ecd8c07..7104c52b837 100644 --- a/sys/dev/isa/if_ie.c +++ b/sys/dev/isa/if_ie.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ie.c,v 1.25 2003/02/03 19:45:53 jason Exp $ */ +/* $OpenBSD: if_ie.c,v 1.26 2003/04/10 10:11:24 miod Exp $ */ /* $NetBSD: if_ie.c,v 1.51 1996/05/12 23:52:48 mycroft Exp $ */ /*- @@ -142,7 +142,6 @@ iomem, and to make 16-pointers, we subtract sc_maddr and and with 0xffff. #include <uvm/uvm_extern.h> #include <machine/cpu.h> -#include <machine/pio.h> /* XXX convert this driver! */ #include <machine/bus.h> #include <machine/intr.h> |