diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-10-16 12:32:37 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-10-16 12:32:37 +0000 |
commit | 75dc0c127a811a7d6e0d07f193c7efe91fa42132 (patch) | |
tree | da0297263eb9762df67834ee108d0533a3a15bc6 /sys/dev/isa/isadma.c | |
parent | 37289f127ac61b09b0ebb90326ea2e57c6c3db5e (diff) |
fix proto, unused var
Diffstat (limited to 'sys/dev/isa/isadma.c')
-rw-r--r-- | sys/dev/isa/isadma.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/isa/isadma.c b/sys/dev/isa/isadma.c index 69ed23de8b6..6ca10a1095b 100644 --- a/sys/dev/isa/isadma.c +++ b/sys/dev/isa/isadma.c @@ -1,4 +1,4 @@ -/* $OpenBSD: isadma.c,v 1.7 1996/06/16 10:31:27 deraadt Exp $ */ +/* $OpenBSD: isadma.c,v 1.8 1996/10/16 12:32:36 deraadt Exp $ */ /* $NetBSD: isadma.c,v 1.19 1996/04/29 20:03:26 christos Exp $ */ #include <sys/param.h> @@ -55,6 +55,7 @@ struct cfdriver isadma_cd = { NULL, "isadma", DV_DULL, 1 }; +int isadmamatch(parent, match, aux) struct device *parent; void *match, *aux; @@ -114,7 +115,6 @@ isadma_start(addr, nbytes, chan, flags) struct dma_info *di; int waport; int mflags; - vm_size_t size; #ifdef ISADMA_DEBUG if (chan < 0 || chan > 7 || |