summaryrefslogtreecommitdiff
path: root/sys/arch/vax/uba/tmscp.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1995-12-14 14:00:15 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1995-12-14 14:00:15 +0000
commit2b3d1887ac6c72f8273969f0b739fb622d7c5c0e (patch)
treec90edaf98be0ac57bce4fdb458db3a33b29b2294 /sys/arch/vax/uba/tmscp.c
parentc4387b4bfda4a8a4d6c2042c6936055ac302dba8 (diff)
update from netbsd
Diffstat (limited to 'sys/arch/vax/uba/tmscp.c')
-rw-r--r--sys/arch/vax/uba/tmscp.c25
1 files changed, 23 insertions, 2 deletions
diff --git a/sys/arch/vax/uba/tmscp.c b/sys/arch/vax/uba/tmscp.c
index 03960efd58d..e08cd17f2fa 100644
--- a/sys/arch/vax/uba/tmscp.c
+++ b/sys/arch/vax/uba/tmscp.c
@@ -1,4 +1,4 @@
-/* $NetBSD: tmscp.c,v 1.6 1995/11/30 00:59:29 jtc Exp $ */
+/* $NetBSD: tmscp.c,v 1.7 1995/12/13 19:02:53 ragge Exp $ */
/*-
* Copyright (c) 1991 The Regents of the University of California.
@@ -192,7 +192,13 @@
#include "vax/vax/tmscpinf.h"
#include "vax/vax/mscpvar.h"
-void tmscpstrategy __P((struct buf *));
+int tmscp_match __P((struct device *, void *, void *));
+void tmscp_attach __P((struct device *, struct device *, void *));
+void tmscpstrategy __P((struct buf *));
+
+struct cfdriver tmscpcd = {
+ NULL, "tmscp", tmscp_match, tmscp_attach, DV_DULL, sizeof(struct device)
+};
/* Software state per controller */
@@ -2138,4 +2144,19 @@ tmserror(um, mp)
printf("\n");
}
}
+
+tmscp_match(parent, match, aux)
+ struct device *parent;
+ void *match, *aux;
+{
+ return 0;
+}
+
+void
+tmscp_attach(parent, self, aux)
+ struct device *parent, *self;
+ void *aux;
+{
+}
+
#endif