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.32 from trunk:



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

description:
Pull up revision 1.32 from trunk:

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

diffstat:

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

diffs (18 lines):

diff -r 8d0e27e80959 -r c41becc76330 sys/dev/vme/xd.c
--- a/sys/dev/vme/xd.c  Tue Jul 25 19:25:12 2000 +0000
+++ b/sys/dev/vme/xd.c  Tue Jul 25 20:41:07 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: xd.c,v 1.27.2.1 2000/07/22 21:03:22 pk Exp $   */
+/*     $NetBSD: xd.c,v 1.27.2.2 2000/07/25 20:41:07 pk Exp $   */
 
 /*
  *
@@ -657,7 +657,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, xdcintr, xdc);
        evcnt_attach_dynamic(&xdc->sc_intrcnt, EVCNT_TYPE_INTR, NULL,
            xdc->sc_dev.dv_xname, "intr");



Home | Main Index | Thread Index | Old Index