Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/ic The soft-interrupt handler now returns void.



details:   https://anonhg.NetBSD.org/src/rev/cab7cc3266a4
branches:  trunk
changeset: 483825:cab7cc3266a4
user:      scw <scw%NetBSD.org@localhost>
date:      Sun Mar 19 10:38:43 2000 +0000

description:
The soft-interrupt handler now returns void.

diffstat:

 sys/dev/ic/clmpcc.c    |  6 ++----
 sys/dev/ic/clmpccvar.h |  4 ++--
 2 files changed, 4 insertions(+), 6 deletions(-)

diffs (44 lines):

diff -r 06a830972a52 -r cab7cc3266a4 sys/dev/ic/clmpcc.c
--- a/sys/dev/ic/clmpcc.c       Sun Mar 19 10:37:04 2000 +0000
+++ b/sys/dev/ic/clmpcc.c       Sun Mar 19 10:38:43 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: clmpcc.c,v 1.9 1999/11/28 12:23:18 scw Exp $ */
+/*     $NetBSD: clmpcc.c,v 1.10 2000/03/19 10:38:43 scw Exp $ */
 
 /*-
  * Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -1388,7 +1388,7 @@
        return 1;
 }
 
-int
+void
 clmpcc_softintr(arg)
        void *arg;
 {
@@ -1469,8 +1469,6 @@
                        (*linesw[tp->t_line].l_start)(tp);
                }
        }
-
-       return 0;
 }
 
 
diff -r 06a830972a52 -r cab7cc3266a4 sys/dev/ic/clmpccvar.h
--- a/sys/dev/ic/clmpccvar.h    Sun Mar 19 10:37:04 2000 +0000
+++ b/sys/dev/ic/clmpccvar.h    Sun Mar 19 10:38:43 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: clmpccvar.h,v 1.3 1999/08/01 09:35:05 scw Exp $ */
+/*     $NetBSD: clmpccvar.h,v 1.4 2000/03/19 10:38:43 scw Exp $ */
 
 /*-
  * Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -133,6 +133,6 @@
 extern int     clmpcc_rxintr   __P((void *));
 extern int     clmpcc_txintr   __P((void *));
 extern int     clmpcc_mdintr   __P((void *));
-extern int     clmpcc_softintr __P((void *));
+extern void    clmpcc_softintr __P((void *));
 
 #endif /* __clmpccvar_h */



Home | Main Index | Thread Index | Old Index