Source-Changes-HG archive

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

[src/netbsd-1-6]: src/sys/arch/acorn26/acorn26 Pull up revision 1.2 (requeste...



details:   https://anonhg.NetBSD.org/src/rev/c1b39148da18
branches:  netbsd-1-6
changeset: 529402:c1b39148da18
user:      he <he%NetBSD.org@localhost>
date:      Mon Nov 18 02:27:00 2002 +0000

description:
Pull up revision 1.2 (requested by bjh21 in ticket #687):
  The only caller of fuswintr() and suswintr(), addupc_intr(),
  can handle their returning -1, so have them always do that
  rather than panicking.

diffstat:

 sys/arch/acorn26/acorn26/stubs.c |  10 ++++++----
 1 files changed, 6 insertions(+), 4 deletions(-)

diffs (37 lines):

diff -r b45ff7f8eebc -r c1b39148da18 sys/arch/acorn26/acorn26/stubs.c
--- a/sys/arch/acorn26/acorn26/stubs.c  Mon Nov 18 02:23:32 2002 +0000
+++ b/sys/arch/acorn26/acorn26/stubs.c  Mon Nov 18 02:27:00 2002 +0000
@@ -1,11 +1,11 @@
-/* $NetBSD: stubs.c,v 1.1 2002/03/24 15:46:48 bjh21 Exp $ */
+/* $NetBSD: stubs.c,v 1.1.4.1 2002/11/18 02:27:00 he Exp $ */
 /*
  * stubs.c -- functions I haven't written yet
  */
 
 #include <sys/param.h>
 
-__RCSID("$NetBSD: stubs.c,v 1.1 2002/03/24 15:46:48 bjh21 Exp $");
+__RCSID("$NetBSD: stubs.c,v 1.1.4.1 2002/11/18 02:27:00 he Exp $");
 
 #include <sys/kernel.h>
 #include <sys/systm.h>
@@ -49,7 +49,8 @@
        void *base;
        short c;
 {
-       panic("suswintr not implemented");
+
+       return -1;
 }
 
 int
@@ -85,7 +86,8 @@
 fuswintr(base)
        const void *base;
 {
-       panic("fuswintr not implemented");
+
+       return -1;
 }
 
 long



Home | Main Index | Thread Index | Old Index