Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/hpcmips/tx change overrun interrupt treatment.



details:   https://anonhg.NetBSD.org/src/rev/92e0a992b3ad
branches:  trunk
changeset: 480201:92e0a992b3ad
user:      uch <uch%NetBSD.org@localhost>
date:      Thu Jan 06 18:11:23 2000 +0000

description:
change overrun interrupt treatment.

diffstat:

 sys/arch/hpcmips/tx/txcom.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (21 lines):

diff -r da823e8d34e5 -r 92e0a992b3ad sys/arch/hpcmips/tx/txcom.c
--- a/sys/arch/hpcmips/tx/txcom.c       Thu Jan 06 18:10:42 2000 +0000
+++ b/sys/arch/hpcmips/tx/txcom.c       Thu Jan 06 18:11:23 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: txcom.c,v 1.3 1999/12/26 17:05:28 uch Exp $ */
+/*     $NetBSD: txcom.c,v 1.4 2000/01/06 18:11:23 uch Exp $ */
 
 /*
  * Copyright (c) 1999, by UCHIYAMA Yasushi
@@ -212,9 +212,9 @@
        tx_intr_establish(tc, TXCOMINTR(TX, slot), IST_EDGE, IPL_TTY,
                          txcom_txintr, sc);
        tx_intr_establish(tc, TXCOMINTR(RXOVERRUN, slot), IST_EDGE, IPL_TTY,
-                         txcom_overrun_intr, sc);
+                         txcom_rxintr, sc);
        tx_intr_establish(tc, TXCOMINTR(TXOVERRUN, slot), IST_EDGE, IPL_TTY,
-                         txcom_overrun_intr, sc);
+                         txcom_txintr, sc);
        tx_intr_establish(tc, TXCOMINTR(FRAMEERR, slot), IST_EDGE, IPL_TTY,
                          txcom_frameerr_intr, sc);
        tx_intr_establish(tc, TXCOMINTR(PARITYERR, slot), IST_EDGE, IPL_TTY,



Home | Main Index | Thread Index | Old Index