Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/i386/mca void functions do not return values.



details:   https://anonhg.NetBSD.org/src/rev/bef21dd3b760
branches:  trunk
changeset: 538568:bef21dd3b760
user:      christos <christos%NetBSD.org@localhost>
date:      Tue Oct 22 21:02:09 2002 +0000

description:
void functions do not return values.

diffstat:

 sys/arch/i386/mca/mca_machdep.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 8327816ae3ab -r bef21dd3b760 sys/arch/i386/mca/mca_machdep.c
--- a/sys/arch/i386/mca/mca_machdep.c   Tue Oct 22 20:51:43 2002 +0000
+++ b/sys/arch/i386/mca/mca_machdep.c   Tue Oct 22 21:02:09 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: mca_machdep.c,v 1.16 2002/10/01 12:57:14 fvdl Exp $    */
+/*     $NetBSD: mca_machdep.c,v 1.17 2002/10/22 21:02:09 christos Exp $        */
 
 /*-
  * Copyright (c) 2000, 2001 The NetBSD Foundation, Inc.
@@ -43,7 +43,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: mca_machdep.c,v 1.16 2002/10/01 12:57:14 fvdl Exp $");
+__KERNEL_RCSID(0, "$NetBSD: mca_machdep.c,v 1.17 2002/10/22 21:02:09 christos Exp $");
 
 #include <sys/types.h>
 #include <sys/param.h>
@@ -257,7 +257,7 @@
        mca_chipset_tag_t mc;
        void *cookie;
 {
-       return isa_intr_disestablish(NULL, cookie);
+       isa_intr_disestablish(NULL, cookie);
 }
        
 



Home | Main Index | Thread Index | Old Index