Add new ihandle member to pcmcia_io_handle, similar to pcmcia_mem_handle's

mhandle structure.  This is for opaque use by pcmcia chipsets.
This commit is contained in:
gdamore 2006-02-23 03:18:42 +00:00
parent f964209a3e
commit 3ca20d0b44

View File

@ -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 */