Module Name:    src
Committed By:   tsutsui
Date:           Sat Apr 22 10:00:24 UTC 2023

Modified Files:
        src/sys/arch/luna68k/luna68k: trap.c
        src/sys/arch/luna68k/stand/boot: trap.c

Log Message:
Remove ancient /*ARGSUSED*/ comments.


To generate a diff of this commit:
cvs rdiff -u -r1.74 -r1.75 src/sys/arch/luna68k/luna68k/trap.c
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/luna68k/stand/boot/trap.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/luna68k/luna68k/trap.c
diff -u src/sys/arch/luna68k/luna68k/trap.c:1.74 src/sys/arch/luna68k/luna68k/trap.c:1.75
--- src/sys/arch/luna68k/luna68k/trap.c:1.74	Sun Jan 15 05:08:33 2023
+++ src/sys/arch/luna68k/luna68k/trap.c	Sat Apr 22 10:00:24 2023
@@ -1,4 +1,4 @@
-/* $NetBSD: trap.c,v 1.74 2023/01/15 05:08:33 tsutsui Exp $ */
+/* $NetBSD: trap.c,v 1.75 2023/04/22 10:00:24 tsutsui Exp $ */
 
 /*
  * Copyright (c) 1988 University of Utah.
@@ -39,7 +39,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.74 2023/01/15 05:08:33 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.75 2023/04/22 10:00:24 tsutsui Exp $");
 
 #include "opt_ddb.h"
 #include "opt_kgdb.h"
@@ -218,7 +218,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, unsigned code, unsigned v)
 {

Index: src/sys/arch/luna68k/stand/boot/trap.c
diff -u src/sys/arch/luna68k/stand/boot/trap.c:1.2 src/sys/arch/luna68k/stand/boot/trap.c:1.3
--- src/sys/arch/luna68k/stand/boot/trap.c:1.2	Tue Jun 15 18:54:34 2021
+++ src/sys/arch/luna68k/stand/boot/trap.c	Sat Apr 22 10:00:24 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: trap.c,v 1.2 2021/06/15 18:54:34 tsutsui Exp $	*/
+/*	$NetBSD: trap.c,v 1.3 2023/04/22 10:00:24 tsutsui Exp $	*/
 
 /*
  * Copyright (c) 1992 OMRON Corporation.
@@ -98,7 +98,6 @@ const char *trap_type[] = {
 /*
  * Called from the trap handler when a processor trap occurs.
  */
-/*ARGSUSED*/
 void
 trap(int type, unsigned int code, unsigned int v, struct frame frame)
 {

Reply via email to