Module Name:    src
Committed By:   cliff
Date:           Tue Sep 15 03:04:03 UTC 2009

Modified Files:
        src/sys/arch/mips/rmi [matt-nb5-mips64]: rmixl_obio.c

Log Message:
make functions static


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.3 -r1.1.2.4 src/sys/arch/mips/rmi/rmixl_obio.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/mips/rmi/rmixl_obio.c
diff -u src/sys/arch/mips/rmi/rmixl_obio.c:1.1.2.3 src/sys/arch/mips/rmi/rmixl_obio.c:1.1.2.4
--- src/sys/arch/mips/rmi/rmixl_obio.c:1.1.2.3	Tue Sep 15 02:32:02 2009
+++ src/sys/arch/mips/rmi/rmixl_obio.c	Tue Sep 15 03:04:03 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: rmixl_obio.c,v 1.1.2.3 2009/09/15 02:32:02 cliff Exp $	*/
+/*	$NetBSD: rmixl_obio.c,v 1.1.2.4 2009/09/15 03:04:03 cliff Exp $	*/
 
 /*
  * Copyright (c) 2001, 2002, 2003 Wasabi Systems, Inc.
@@ -40,7 +40,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rmixl_obio.c,v 1.1.2.3 2009/09/15 02:32:02 cliff Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rmixl_obio.c,v 1.1.2.4 2009/09/15 03:04:03 cliff Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -65,7 +65,7 @@
 
 int obio_found;
 
-int
+static int
 obio_match(struct device * parent, struct cfdata *cf, void *aux)
 {
 	if (obio_found)
@@ -73,7 +73,7 @@
 	return 1;
 }
 
-void
+static void
 obio_attach(struct device * parent, struct device * self, void *aux)
 {
 	struct obio_softc *sc = device_private(self);
@@ -95,7 +95,7 @@
 	config_search_ia(obio_search, self, "obio", NULL);
 }
 
-int
+static int
 obio_print(void *aux, const char *pnp)
 {
 	struct obio_attach_args *obio = aux;
@@ -111,7 +111,7 @@
 	return (UNCONF);
 }
 
-int
+static int
 obio_search(struct device * parent, struct cfdata *cf,
 	    const int *ldesc, void *aux)
 {

Reply via email to