Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/pmax/tc Add a missing parenthesis and correct the f...



details:   https://anonhg.NetBSD.org/src/rev/785b063f0f9f
branches:  trunk
changeset: 487302:785b063f0f9f
user:      nisimura <nisimura%NetBSD.org@localhost>
date:      Tue Jun 06 00:27:58 2000 +0000

description:
Add a missing parenthesis and correct the function return value declaration.

diffstat:

 sys/arch/pmax/tc/tcbus.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r 76740a4e9bca -r 785b063f0f9f sys/arch/pmax/tc/tcbus.c
--- a/sys/arch/pmax/tc/tcbus.c  Tue Jun 06 00:08:24 2000 +0000
+++ b/sys/arch/pmax/tc/tcbus.c  Tue Jun 06 00:27:58 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: tcbus.c,v 1.11 2000/06/04 19:14:57 cgd Exp $   */
+/*     $NetBSD: tcbus.c,v 1.12 2000/06/06 00:27:58 nisimura Exp $      */
 
 /*
  * Copyright (c) 1999, 2000 Tohru Nishimura.  All rights reserved.
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>                 /* RCS ID & Copyright macro defns */
-__KERNEL_RCSID(0, "$NetBSD: tcbus.c,v 1.11 2000/06/04 19:14:57 cgd Exp $");
+__KERNEL_RCSID(0, "$NetBSD: tcbus.c,v 1.12 2000/06/06 00:27:58 nisimura Exp $");
 
 /*
  * Which system models were configured?
@@ -54,7 +54,7 @@
 #include <dev/tc/tcvar.h>
 #include <pmax/pmax/pmaxtype.h>
 
-static const struct evcnt *tc_ds_intr_evcnt __P((struct device *, void *);
+static const struct evcnt *tc_ds_intr_evcnt __P((struct device *, void *));
 static void    tc_ds_intr_establish __P((struct device *, void *,
                                int, int (*)(void *), void *));
 static void    tc_ds_intr_disestablish __P((struct device *, void *));
@@ -131,7 +131,7 @@
 /*
  * Dispatch to model specific interrupt line evcnt fetch rontine
  */
-static void
+static const struct evcnt *
 tc_ds_intr_evcnt(dev, cookie)
        struct device *dev;
        void *cookie;



Home | Main Index | Thread Index | Old Index