Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/sparc/sparc intr_establish() signature change: pass...



details:   https://anonhg.NetBSD.org/src/rev/20129aadc400
branches:  trunk
changeset: 540339:20129aadc400
user:      pk <pk%NetBSD.org@localhost>
date:      Tue Dec 10 12:13:24 2002 +0000

description:
intr_establish() signature change: pass NULL for the `fast trap' argument.

diffstat:

 sys/arch/sparc/sparc/oclock.c       |  4 ++--
 sys/arch/sparc/sparc/timer.c        |  6 +++---
 sys/arch/sparc/sparc/timer_msiiep.c |  6 +++---
 3 files changed, 8 insertions(+), 8 deletions(-)

diffs (58 lines):

diff -r 0df3ca0ef833 -r 20129aadc400 sys/arch/sparc/sparc/oclock.c
--- a/sys/arch/sparc/sparc/oclock.c     Tue Dec 10 12:11:21 2002 +0000
+++ b/sys/arch/sparc/sparc/oclock.c     Tue Dec 10 12:13:24 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: oclock.c,v 1.5 2002/12/06 16:04:14 pk Exp $ */
+/*     $NetBSD: oclock.c,v 1.6 2002/12/10 12:13:24 pk Exp $ */
 
 /*-
  * Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -192,7 +192,7 @@
        timer_init = oclock_init;
 
        /* link interrupt handler */
-       intr_establish(10, 0, &level10);
+       intr_establish(10, 0, &level10, NULL);
 
        /* Our TOD clock year 0 represents 1968 */
        if ((todr_handle = intersil7170_attach(bt, bh, 1968)) == NULL)
diff -r 0df3ca0ef833 -r 20129aadc400 sys/arch/sparc/sparc/timer.c
--- a/sys/arch/sparc/sparc/timer.c      Tue Dec 10 12:11:21 2002 +0000
+++ b/sys/arch/sparc/sparc/timer.c      Tue Dec 10 12:13:24 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: timer.c,v 1.13 2002/12/06 16:04:14 pk Exp $ */
+/*     $NetBSD: timer.c,v 1.14 2002/12/10 12:13:24 pk Exp $ */
 
 /*
  * Copyright (c) 1992, 1993
@@ -125,8 +125,8 @@
        }
 #endif
        /* link interrupt handlers */
-       intr_establish(10, 0, &level10);
-       intr_establish(14, 0, &level14);
+       intr_establish(10, 0, &level10, NULL);
+       intr_establish(14, 0, &level14, NULL);
 }
 
 /*
diff -r 0df3ca0ef833 -r 20129aadc400 sys/arch/sparc/sparc/timer_msiiep.c
--- a/sys/arch/sparc/sparc/timer_msiiep.c       Tue Dec 10 12:11:21 2002 +0000
+++ b/sys/arch/sparc/sparc/timer_msiiep.c       Tue Dec 10 12:13:24 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: timer_msiiep.c,v 1.4 2002/10/02 16:02:11 thorpej Exp $ */
+/*     $NetBSD: timer_msiiep.c,v 1.5 2002/12/10 12:13:24 pk Exp $      */
 
 /*
  * Copyright (c) 1992, 1993
@@ -213,8 +213,8 @@
        level14.ih_fun = statintr_msiiep;
 
        /* link interrupt handlers */
-       intr_establish(10, &level10);
-       intr_establish(14, &level14);
+       intr_establish(10, 0, &level10, NULL);
+       intr_establish(14, 0, &level14, NULL);
 
        timerok = 1;
 }



Home | Main Index | Thread Index | Old Index