summaryrefslogtreecommitdiff
path: root/sys/arch/amiga/dev/if_qn.c
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>1997-09-18 13:40:05 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>1997-09-18 13:40:05 +0000
commit2157b0ba8b467d175588a39d0235e3f42cfa0167 (patch)
treeab27e576639f38402b47a6af61ab8711d85d7ce7 /sys/arch/amiga/dev/if_qn.c
parent9557efb948677ebfd961c6f49a7b69e3c722c206 (diff)
Merge of NetBSD changes upto last week or so, with the exception of stand/
Diffstat (limited to 'sys/arch/amiga/dev/if_qn.c')
-rw-r--r--sys/arch/amiga/dev/if_qn.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/sys/arch/amiga/dev/if_qn.c b/sys/arch/amiga/dev/if_qn.c
index 46909ff8413..546bcd9e611 100644
--- a/sys/arch/amiga/dev/if_qn.c
+++ b/sys/arch/amiga/dev/if_qn.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_qn.c,v 1.9 1997/01/16 09:24:47 niklas Exp $ */
+/* $OpenBSD: if_qn.c,v 1.10 1997/09/18 13:39:57 niklas Exp $ */
/* $NetBSD: if_qn.c,v 1.10 1996/12/23 09:10:19 veego Exp $ */
/*
@@ -490,10 +490,6 @@ word_copy_to_card(a, card, len)
/*
* Copy packet from mbuf to the board memory
- *
- * Uses an extra buffer/extra memory copy,
- * unless the whole packet fits in one mbuf.
- *
*/
u_short
qn_put(addr, m)
@@ -510,7 +506,6 @@ qn_put(addr, m)
for (; m != NULL; m = m->m_next) {
data = mtod(m, u_short *);
len = m->m_len;
- totlen += len;
if (len > 0) {
totlen += len;