summaryrefslogtreecommitdiff
path: root/sys/arch/vax/bi/bivar.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/vax/bi/bivar.h')
-rw-r--r--sys/arch/vax/bi/bivar.h15
1 files changed, 11 insertions, 4 deletions
diff --git a/sys/arch/vax/bi/bivar.h b/sys/arch/vax/bi/bivar.h
index a44ace650fb..ebd21677460 100644
--- a/sys/arch/vax/bi/bivar.h
+++ b/sys/arch/vax/bi/bivar.h
@@ -1,5 +1,5 @@
-/* $OpenBSD: bivar.h,v 1.5 2002/03/14 03:16:02 millert Exp $ */
-/* $NetBSD: bivar.h,v 1.5 2000/03/26 11:45:04 ragge Exp $ */
+/* $OpenBSD: bivar.h,v 1.6 2002/06/11 09:36:23 hugh Exp $ */
+/* $NetBSD: bivar.h,v 1.8 2000/07/26 12:41:40 ragge Exp $ */
/*
* Copyright (c) 1996, 1999 Ludd, University of Lule}, Sweden.
* All rights reserved.
@@ -69,6 +69,13 @@ struct bi_list {
char *bl_name; /* DEC name */
};
+/* bl_havedriver field meaning */
+#define DT_UNSUPP 0 /* pseudo define */
+#define DT_HAVDRV 1 /* device have driver */
+#define DT_ADAPT 2 /* is an adapter */
+#define DT_QUIET 4 /* don't complain when not conf'ed */
+#define DT_VEC 8 /* uses a interrupt vector */
+
/* Prototype */
-void bi_attach(struct bi_softc *);
-void bi_intr_establish(void *, int, void (*)(void *), void *);
+void bi_attach (struct bi_softc *);
+void bi_intr_establish (void *, int, void (*)(void *), void *, struct evcnt *);