From 4f364364616cdfe593c8928e8db77339d0c8b299 Mon Sep 17 00:00:00 2001 From: drochner Date: Sun, 28 Mar 1999 17:47:28 +0000 Subject: [PATCH] add fields for bus_apace tag and handle to ioasic_softc --- sys/dev/tc/ioasicvar.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sys/dev/tc/ioasicvar.h b/sys/dev/tc/ioasicvar.h index 6e62f5fe1f0c..21dbb4f0773c 100644 --- a/sys/dev/tc/ioasicvar.h +++ b/sys/dev/tc/ioasicvar.h @@ -1,4 +1,4 @@ -/* $NetBSD: ioasicvar.h,v 1.7 1999/03/17 18:24:57 ross Exp $ */ +/* $NetBSD: ioasicvar.h,v 1.8 1999/03/28 17:47:28 drochner Exp $ */ /* * Copyright (c) 1995 Carnegie-Mellon University. @@ -59,10 +59,14 @@ struct ioasic_softc { tc_addr_t sc_base; void *sc_cookie; + bus_space_tag_t sc_bst; + bus_space_handle_t sc_bsh; bus_dma_tag_t sc_dmat; bus_dmamap_t sc_lance_dmam; }; +extern struct cfdriver ioasic_cd; + /* * XXX Some drivers need direct access to IOASIC registers. */