summaryrefslogtreecommitdiffstats
path: root/sys/isa/isa_common.h
diff options
context:
space:
mode:
authordfr <dfr@FreeBSD.org>1999-05-30 11:02:17 +0000
committerdfr <dfr@FreeBSD.org>1999-05-30 11:02:17 +0000
commit3372b64e9da101fdd27f84e127b88dfc1c69edb6 (patch)
tree6f9756cfbc396db3e53829159e59e48cfaa96521 /sys/isa/isa_common.h
parent5e6c0b736334f0b218b5fe71b0edf37422a870d2 (diff)
downloadFreeBSD-src-3372b64e9da101fdd27f84e127b88dfc1c69edb6.zip
FreeBSD-src-3372b64e9da101fdd27f84e127b88dfc1c69edb6.tar.gz
* 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.
Diffstat (limited to 'sys/isa/isa_common.h')
-rw-r--r--sys/isa/isa_common.h6
1 files changed, 5 insertions, 1 deletions
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))
OpenPOWER on IntegriCloud