Source-Changes-HG archive

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

[src/netbsd-1-5]: src/sys/arch/evbsh3/evbsh3 Pullup revision 1.11 (approved b...



details:   https://anonhg.NetBSD.org/src/rev/228e7188feae
branches:  netbsd-1-5
changeset: 489160:228e7188feae
user:      msaitoh <msaitoh%NetBSD.org@localhost>
date:      Mon Aug 21 18:20:56 2000 +0000

description:
Pullup revision 1.11 (approved by thorpej):

 check INTEVT code for SCIF (SH4 only)

diffstat:

 sys/arch/evbsh3/evbsh3/shb.c |  6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diffs (20 lines):

diff -r 5de28301fc6b -r 228e7188feae sys/arch/evbsh3/evbsh3/shb.c
--- a/sys/arch/evbsh3/evbsh3/shb.c      Mon Aug 21 18:18:23 2000 +0000
+++ b/sys/arch/evbsh3/evbsh3/shb.c      Mon Aug 21 18:20:56 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: shb.c,v 1.9 2000/03/21 04:42:57 itojun Exp $   */
+/*     $NetBSD: shb.c,v 1.9.4.1 2000/08/21 18:20:56 msaitoh Exp $      */
 
 /*-
  * Copyright (c) 1993, 1994 Charles Hannum.  All rights reserved.
@@ -408,6 +408,10 @@
                irq_num = TMU1_IRQ;
        } else if (IS_INTEVT_SCI0(irl)) {       /* XXX TOO DIRTY */
                irq_num = SCI_IRQ;
+#ifdef SH4
+       } else if ((irl & 0x0f00) == INTEVT_SCIF) {
+               irq_num = SCIF_IRQ;
+#endif
        } else
                irq_num = (irl - 0x200) >> 5;
 



Home | Main Index | Thread Index | Old Index