Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/news68k/news68k Oops, fix botch in previous.



details:   https://anonhg.NetBSD.org/src/rev/639d65f563fb
branches:  trunk
changeset: 499040:639d65f563fb
user:      tsutsui <tsutsui%NetBSD.org@localhost>
date:      Thu Nov 09 13:32:06 2000 +0000

description:
Oops, fix botch in previous.

diffstat:

 sys/arch/news68k/news68k/isr.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 5b7da0711975 -r 639d65f563fb sys/arch/news68k/news68k/isr.c
--- a/sys/arch/news68k/news68k/isr.c    Thu Nov 09 13:01:41 2000 +0000
+++ b/sys/arch/news68k/news68k/isr.c    Thu Nov 09 13:32:06 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: isr.c,v 1.5 2000/11/06 16:54:28 tsutsui Exp $  */
+/*     $NetBSD: isr.c,v 1.6 2000/11/09 13:32:06 tsutsui Exp $  */
 
 /*-
  * Copyright (c) 1996 The NetBSD Foundation, Inc.
@@ -315,7 +315,7 @@
        splx(s);
 
 #define DONETISR(bit, fn) do {         \
-       if (netisr & (1 << bit)) {      \
+       if (isr & (1 << bit)) {         \
                fn();                   \
        }                               \
 } while (0)



Home | Main Index | Thread Index | Old Index