Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/mips/mips Use "static" in the function intro if the...



details:   https://anonhg.NetBSD.org/src/rev/9d5d76194c5f
branches:  trunk
changeset: 379112:9d5d76194c5f
user:      simonb <simonb%NetBSD.org@localhost>
date:      Tue May 11 14:41:08 2021 +0000

description:
Use "static" in the function intro if the function is static.

diffstat:

 sys/arch/mips/mips/mips_fpu.c |  10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diffs (45 lines):

diff -r 0b7277dfe46b -r 9d5d76194c5f sys/arch/mips/mips/mips_fpu.c
--- a/sys/arch/mips/mips/mips_fpu.c     Tue May 11 10:16:48 2021 +0000
+++ b/sys/arch/mips/mips/mips_fpu.c     Tue May 11 14:41:08 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: mips_fpu.c,v 1.15 2017/05/07 05:45:07 skrll Exp $      */
+/*     $NetBSD: mips_fpu.c,v 1.16 2021/05/11 14:41:08 simonb Exp $     */
 
 /*-
  * Copyright (c) 2010 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: mips_fpu.c,v 1.15 2017/05/07 05:45:07 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: mips_fpu.c,v 1.16 2021/05/11 14:41:08 simonb Exp $");
 
 #include <sys/param.h>
 #include <sys/mutex.h>
@@ -79,7 +79,7 @@ fpu_used_p(const lwp_t *l)
        return pcu_valid_p(&mips_fpu_ops, l);
 }
 
-void
+static void
 mips_fpu_state_save(lwp_t *l)
 {
        struct trapframe * const tf = l->l_md.md_utf;
@@ -206,7 +206,7 @@ mips_fpu_state_save(lwp_t *l)
        __asm volatile ("mtc0 %0, $%1" :: "r"(status), "n"(MIPS_COP_0_STATUS));
 }
 
-void
+static void
 mips_fpu_state_load(lwp_t *l, u_int flags)
 {
        struct trapframe * const tf = l->l_md.md_utf;
@@ -350,7 +350,7 @@ mips_fpu_state_load(lwp_t *l, u_int flag
                "n"(MIPS_COP_0_STATUS));
 }
 
-void
+static void
 mips_fpu_state_release(lwp_t *l)
 {
        l->l_md.md_utf->tf_regs[_R_SR] &= ~MIPS_SR_COP_1_BIT;



Home | Main Index | Thread Index | Old Index