Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/news68k/news68k Remove ancient /*ARGSUSED*/ comments.



details:   https://anonhg.NetBSD.org/src/rev/98c009195f58
branches:  trunk
changeset: 374406:98c009195f58
user:      tsutsui <tsutsui%NetBSD.org@localhost>
date:      Sat Apr 22 10:09:12 2023 +0000

description:
Remove ancient /*ARGSUSED*/ comments.

diffstat:

 sys/arch/news68k/news68k/bus_space.c |  9 ++-------
 sys/arch/news68k/news68k/trap.c      |  5 ++---
 2 files changed, 4 insertions(+), 10 deletions(-)

diffs (84 lines):

diff -r c48ea5ee2864 -r 98c009195f58 sys/arch/news68k/news68k/bus_space.c
--- a/sys/arch/news68k/news68k/bus_space.c      Sat Apr 22 10:03:53 2023 +0000
+++ b/sys/arch/news68k/news68k/bus_space.c      Sat Apr 22 10:09:12 2023 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: bus_space.c,v 1.13 2014/09/21 16:34:53 christos Exp $  */
+/*     $NetBSD: bus_space.c,v 1.14 2023/04/22 10:09:12 tsutsui Exp $   */
 
 /*-
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -35,7 +35,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: bus_space.c,v 1.13 2014/09/21 16:34:53 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bus_space.c,v 1.14 2023/04/22 10:09:12 tsutsui Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -46,7 +46,6 @@
 
 extern int *nofault;
 
-/* ARGSUSED */
 int
 bus_space_map(bus_space_tag_t t, bus_addr_t bpa, bus_size_t size, int flags,
     bus_space_handle_t *bshp)
@@ -69,7 +68,6 @@ bus_space_map(bus_space_tag_t t, bus_add
        return 1;
 }
 
-/* ARGSUSED */
 int
 bus_space_alloc(bus_space_tag_t t, bus_addr_t rstart, bus_addr_t rend,
     bus_size_t size, bus_size_t alignment, bus_size_t boundary, int flags,
@@ -82,7 +80,6 @@ bus_space_alloc(bus_space_tag_t t, bus_a
        return EINVAL;
 }
 
-/* ARGSUSED */
 void
 bus_space_free(bus_space_tag_t t, bus_space_handle_t bsh, bus_size_t size)
 {
@@ -111,7 +108,6 @@ bus_space_unmap(bus_space_tag_t t, bus_s
        return;
 }
 
-/* ARGSUSED */
 int
 bus_space_subregion(bus_space_tag_t t, bus_space_handle_t bsh,
     bus_size_t offset, bus_size_t size, bus_space_handle_t *nbshp)
@@ -121,7 +117,6 @@ bus_space_subregion(bus_space_tag_t t, b
        return 0;
 }
 
-/* ARGSUSED */
 int
 news68k_bus_space_probe(bus_space_tag_t t, bus_space_handle_t bsh,
     bus_size_t offset, int sz)
diff -r c48ea5ee2864 -r 98c009195f58 sys/arch/news68k/news68k/trap.c
--- a/sys/arch/news68k/news68k/trap.c   Sat Apr 22 10:03:53 2023 +0000
+++ b/sys/arch/news68k/news68k/trap.c   Sat Apr 22 10:09:12 2023 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: trap.c,v 1.73 2021/09/25 19:16:31 tsutsui Exp $        */
+/*     $NetBSD: trap.c,v 1.74 2023/04/22 10:09:12 tsutsui Exp $        */
 
 /*
  * Copyright (c) 1988 University of Utah.
@@ -39,7 +39,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.73 2021/09/25 19:16:31 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.74 2023/04/22 10:09:12 tsutsui Exp $");
 
 #include "opt_ddb.h"
 #include "opt_execfmt.h"
@@ -240,7 +240,6 @@ machine_userret(struct lwp *l, struct fr
  * including events such as simulated software interrupts/AST's.
  * System calls are broken out for efficiency.
  */
-/*ARGSUSED*/
 void
 trap(struct frame *fp, int type, u_int code, u_int v)
 {



Home | Main Index | Thread Index | Old Index