From 3372b64e9da101fdd27f84e127b88dfc1c69edb6 Mon Sep 17 00:00:00 2001 From: dfr Date: Sun, 30 May 1999 11:02:17 +0000 Subject: * Add ivars for ISA pnp. * Move isa_dma* declarations to isavar.h. * Add a method ISA_DELETE_RESOURCE() to the ISA interface. * Tidy up include protection defines. --- sys/isa/isa_common.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'sys/isa/isa_common.h') diff --git a/sys/isa/isa_common.h b/sys/isa/isa_common.h index cb9f26c..8447992 100644 --- a/sys/isa/isa_common.h +++ b/sys/isa/isa_common.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $Id: isa_common.h,v 1.1 1999/05/22 15:18:25 dfr Exp $ */ /* @@ -41,6 +41,10 @@ MALLOC_DECLARE(M_ISADEV); struct isa_device { struct resource_list id_resources; int id_flags; + u_int32_t id_vendorid; /* pnp vendor id */ + u_int32_t id_serial; /* pnp serial */ + u_int32_t id_logicalid; /* pnp logical device id */ + u_int32_t id_compatid; /* pnp compat device id */ }; #define DEVTOISA(dev) ((struct isa_device *) device_get_ivars(dev)) -- cgit v1.1