From 3ca20d0b4473fd513f0ef29bcad20781908bdc93 Mon Sep 17 00:00:00 2001 From: gdamore Date: Thu, 23 Feb 2006 03:18:42 +0000 Subject: [PATCH] Add new ihandle member to pcmcia_io_handle, similar to pcmcia_mem_handle's mhandle structure. This is for opaque use by pcmcia chipsets. --- sys/dev/pcmcia/pcmciavar.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/dev/pcmcia/pcmciavar.h b/sys/dev/pcmcia/pcmciavar.h index aed45d626b8b..6b24199770fb 100644 --- a/sys/dev/pcmcia/pcmciavar.h +++ b/sys/dev/pcmcia/pcmciavar.h @@ -1,4 +1,4 @@ -/* $NetBSD: pcmciavar.h,v 1.31 2005/12/11 12:23:23 christos Exp $ */ +/* $NetBSD: pcmciavar.h,v 1.32 2006/02/23 03:18:42 gdamore Exp $ */ /* * Copyright (c) 1997 Marc Horowitz. All rights reserved. @@ -45,6 +45,7 @@ struct pcmcia_io_handle { bus_addr_t addr; /* resulting address in bus space */ bus_size_t size; /* size of i/o space */ int flags; /* misc. information */ + void *ihandle; /* opaque i/o handle */ }; #define PCMCIA_IO_ALLOCATED 0x01 /* i/o space was allocated */