diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-08-08 19:16:09 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-08-08 19:16:09 +0000 |
commit | 54ea805cb1955b930529ffa56bc4b1e1c6eaf625 (patch) | |
tree | e1a139a578012b7a2dd89e18fbb11715af49a283 /sys | |
parent | 6f4240a0ba0055aeab306357e08973f464c132b7 (diff) |
ioh is a bus_space_handle_t not a bus_space_tag_t
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/isa/if_ef_isapnp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/isa/if_ef_isapnp.c b/sys/dev/isa/if_ef_isapnp.c index 60cb3e27f36..0300c0a7d40 100644 --- a/sys/dev/isa/if_ef_isapnp.c +++ b/sys/dev/isa/if_ef_isapnp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ef_isapnp.c,v 1.3 1999/08/05 18:06:28 jason Exp $ */ +/* $OpenBSD: if_ef_isapnp.c,v 1.4 1999/08/08 19:16:08 deraadt Exp $ */ /* * Copyright (c) 1999 Jason L. Wright (jason@thought.net) @@ -405,7 +405,7 @@ efinit(sc) { struct ifnet *ifp = &sc->sc_arpcom.ac_if; bus_space_tag_t iot = sc->sc_iot; - bus_space_tag_t ioh = sc->sc_ioh; + bus_space_handle_t ioh = sc->sc_ioh; int i; efstop(sc); |