Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/ic There is no need to use M_EOR here.



details:   https://anonhg.NetBSD.org/src/rev/21ac65f2519b
branches:  trunk
changeset: 513715:21ac65f2519b
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Thu Aug 09 11:54:32 2001 +0000

description:
There is no need to use M_EOR here.

diffstat:

 sys/dev/ic/dp8390.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r a72fd1666144 -r 21ac65f2519b sys/dev/ic/dp8390.c
--- a/sys/dev/ic/dp8390.c       Thu Aug 09 08:16:42 2001 +0000
+++ b/sys/dev/ic/dp8390.c       Thu Aug 09 11:54:32 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: dp8390.c,v 1.46 2001/07/07 15:59:37 thorpej Exp $      */
+/*     $NetBSD: dp8390.c,v 1.47 2001/08/09 11:54:32 thorpej Exp $      */
 
 /*
  * Device driver for National Semiconductor DS8390/WD83C690 based ethernet
@@ -1595,7 +1595,7 @@
        mb.m_next = NULL;
        mb.m_pkthdr.len = mb.m_len = l;
        mtod(&mb, u_char *) = buf;
-       mb.m_flags = M_EXT | M_PKTHDR | M_EOR;
+       mb.m_flags = M_EXT | M_PKTHDR;
        mb.m_type = MT_DATA;
 
        l = sc->write_mbuf(sc, &mb,



Home | Main Index | Thread Index | Old Index