Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/riscv/include Remove argument names from function d...



details:   https://anonhg.NetBSD.org/src/rev/bbd3f26ec502
branches:  trunk
changeset: 1021220:bbd3f26ec502
user:      skrll <skrll%NetBSD.org@localhost>
date:      Tue May 18 06:40:16 2021 +0000

description:
Remove argument names from function declaration prototypes.
Misc tidyup.

diffstat:

 sys/arch/riscv/include/db_machdep.h |  13 +++++++------
 1 files changed, 7 insertions(+), 6 deletions(-)

diffs (47 lines):

diff -r 8a6a07aace94 -r bbd3f26ec502 sys/arch/riscv/include/db_machdep.h
--- a/sys/arch/riscv/include/db_machdep.h       Tue May 18 06:38:24 2021 +0000
+++ b/sys/arch/riscv/include/db_machdep.h       Tue May 18 06:40:16 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: db_machdep.h,v 1.3 2021/04/14 06:32:20 dholland Exp $ */
+/* $NetBSD: db_machdep.h,v 1.4 2021/05/18 06:40:16 skrll Exp $ */
 
 /*-
  * Copyright (c) 2014 The NetBSD Foundation, Inc.
@@ -28,6 +28,7 @@
  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  * POSSIBILITY OF SUCH DAMAGE.
  */
+
 #ifndef        _RISCV_DB_MACHDEP_H_
 #define        _RISCV_DB_MACHDEP_H_
 
@@ -57,9 +58,9 @@
                (tf)->tf_pc += BKPT_SIZE;                       \
 } while(0)
 
-#define        BKPT_ADDR(addr) (addr)          /* breakpoint address */
-#define BKPT_INST      0x00100073
-#define        BKPT_SIZE       (sizeof(uint32_t))      /* size of breakpoint inst */
+#define        BKPT_ADDR(addr)         (addr)                  /* breakpoint address */
+#define BKPT_INST              0x00100073
+#define        BKPT_SIZE               (sizeof(uint32_t))      /* size of bkpt inst */
 #define        BKPT_SET(inst, addr)    (BKPT_INST)
 
 /*
@@ -79,14 +80,14 @@
 /*
  * Interface to disassembly
  */
-db_addr_t      db_disasm_insn(uint32_t insn, db_addr_t loc, bool altfmt);
+db_addr_t      db_disasm_insn(uint32_t, db_addr_t, bool);
 
 
 /*
  * Entrypoints to DDB for kernel, keyboard drivers, init hook
  */
 void   kdb_kbd_trap(db_regs_t *);
-int    kdb_trap(int type, struct trapframe *);
+int    kdb_trap(int, struct trapframe *);
 
 static inline void
 db_set_ddb_regs(int type, struct trapframe *tf)



Home | Main Index | Thread Index | Old Index