Source-Changes-HG archive

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

[src/netbsd-1-5]: src/sys/dev/vme Pull up revision 1.30 from trunk:



details:   https://anonhg.NetBSD.org/src/rev/12a2e5a7e262
branches:  netbsd-1-5
changeset: 488719:12a2e5a7e262
user:      pk <pk%NetBSD.org@localhost>
date:      Tue Jul 25 20:41:35 2000 +0000

description:
Pull up revision 1.30 from trunk:

Pass the level and vector to vme_intr_map() in the correct order.

diffstat:

 sys/dev/vme/xy.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r c41becc76330 -r 12a2e5a7e262 sys/dev/vme/xy.c
--- a/sys/dev/vme/xy.c  Tue Jul 25 20:41:07 2000 +0000
+++ b/sys/dev/vme/xy.c  Tue Jul 25 20:41:35 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: xy.c,v 1.25.2.1 2000/07/22 21:03:56 pk Exp $   */
+/*     $NetBSD: xy.c,v 1.25.2.2 2000/07/25 20:41:35 pk Exp $   */
 
 /*
  *
@@ -553,7 +553,7 @@
        }
 
        /* link in interrupt with higher level software */
-       vme_intr_map(ct, va->ivector, va->ilevel, &ih);
+       vme_intr_map(ct, va->ilevel, va->ivector, &ih);
        vme_intr_establish(ct, ih, IPL_BIO, xycintr, xyc);
        evcnt_attach_dynamic(&xyc->sc_intrcnt, EVCNT_TYPE_INTR, NULL,
            xyc->sc_dev.dv_xname, "intr");



Home | Main Index | Thread Index | Old Index