Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/evbarm/rpi Make rpi_bootparams static



details:   https://anonhg.NetBSD.org/src/rev/fc77278ceeda
branches:  trunk
changeset: 782361:fc77278ceeda
user:      skrll <skrll%NetBSD.org@localhost>
date:      Tue Oct 30 20:02:15 2012 +0000

description:
Make rpi_bootparams static

diffstat:

 sys/arch/evbarm/rpi/rpi_machdep.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r 32cc12d3d3d3 -r fc77278ceeda sys/arch/evbarm/rpi/rpi_machdep.c
--- a/sys/arch/evbarm/rpi/rpi_machdep.c Tue Oct 30 17:26:29 2012 +0000
+++ b/sys/arch/evbarm/rpi/rpi_machdep.c Tue Oct 30 20:02:15 2012 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: rpi_machdep.c,v 1.16 2012/10/26 10:03:13 skrll Exp $   */
+/*     $NetBSD: rpi_machdep.c,v 1.17 2012/10/30 20:02:15 skrll Exp $   */
 
 /*-
  * Copyright (c) 2012 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rpi_machdep.c,v 1.16 2012/10/26 10:03:13 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rpi_machdep.c,v 1.17 2012/10/30 20:02:15 skrll Exp $");
 
 #include "opt_evbarm_boardtype.h"
 
@@ -74,7 +74,7 @@
 static char bootargs[MAX_BOOT_STRING];
 char *boot_args = NULL;
 
-void rpi_bootparams(void);
+static void rpi_bootparams(void);
 
 /*
  * Macros to translate between physical and virtual for a subset of the
@@ -186,7 +186,7 @@
        }
 };
 
-void
+static void
 rpi_bootparams(void)
 {
        bus_space_tag_t iot = &bcm2835_bs_tag;



Home | Main Index | Thread Index | Old Index