check INTEVT_SCIF (SH4 only)

I'm sorry, I'd forgotten to commit it for a long time.
This commit is contained in:
msaitoh 2000-08-17 13:07:51 +00:00
parent 4e24c8f4bb
commit a8fe4a6776

View File

@ -1,4 +1,4 @@
/* $NetBSD: shb.c,v 1.10 2000/07/02 04:40:37 cgd Exp $ */
/* $NetBSD: shb.c,v 1.11 2000/08/17 13:07:51 msaitoh Exp $ */
/*-
* Copyright (c) 1993, 1994 Charles Hannum. All rights reserved.
@ -401,6 +401,10 @@ intrhandler(p1, p2, p3, p4, frame)
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;