Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/dev/ic Don't set FS and LS in the setup packet descripto...
details: https://anonhg.NetBSD.org/src/rev/af5ef2a083a5
branches: trunk
changeset: 486554:af5ef2a083a5
user: thorpej <thorpej%NetBSD.org@localhost>
date: Thu May 25 16:36:03 2000 +0000
description:
Don't set FS and LS in the setup packet descriptor. From
IWAMOTO Toshihiro <iwamoto%sat.t.u-tokyo.ac.jp@localhost>, kern/10194,
and confirmed with the 21040 manual.
diffstat:
sys/dev/ic/tulip.c | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
diffs (19 lines):
diff -r 56f90afcfcc6 -r af5ef2a083a5 sys/dev/ic/tulip.c
--- a/sys/dev/ic/tulip.c Thu May 25 16:33:13 2000 +0000
+++ b/sys/dev/ic/tulip.c Thu May 25 16:36:03 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: tulip.c,v 1.64 2000/05/18 03:02:45 thorpej Exp $ */
+/* $NetBSD: tulip.c,v 1.65 2000/05/25 16:36:03 thorpej Exp $ */
/*-
* Copyright (c) 1998, 1999, 2000 The NetBSD Foundation, Inc.
@@ -2645,8 +2645,7 @@
htole32(TULIP_CDSPADDR(sc));
sc->sc_txdescs[sc->sc_txnext].td_ctl =
htole32((TULIP_SETUP_PACKET_LEN << TDCTL_SIZE1_SHIFT) |
- sc->sc_filtmode | TDCTL_Tx_SET | TDCTL_Tx_FS |
- TDCTL_Tx_LS | TDCTL_Tx_IC | sc->sc_tdctl_ch |
+ sc->sc_filtmode | TDCTL_Tx_SET | TDCTL_Tx_IC | sc->sc_tdctl_ch |
(sc->sc_txnext == (TULIP_NTXDESC - 1) ? sc->sc_tdctl_er : 0));
sc->sc_txdescs[sc->sc_txnext].td_status = htole32(TDSTAT_OWN);
TULIP_CDTXSYNC(sc, sc->sc_txnext, txs->txs_ndescs,
Home |
Main Index |
Thread Index |
Old Index