diff options
author | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2021-08-30 08:11:13 +0000 |
---|---|---|
committer | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2021-08-30 08:11:13 +0000 |
commit | 92769adb7b567387c25ce43fddba311f03f2f218 (patch) | |
tree | e17f09ebcbc068e0a5ae650e0477aafb69f5f6a6 /sys/arch/riscv64 | |
parent | b96fc5380110ab52504c69daacac94f81375876a (diff) |
Remove typedef of db_addr_t; mpi converted the users of it to vaddr_t already
back in 2019.
ok mpi@
Diffstat (limited to 'sys/arch/riscv64')
-rw-r--r-- | sys/arch/riscv64/include/db_machdep.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/arch/riscv64/include/db_machdep.h b/sys/arch/riscv64/include/db_machdep.h index 426d5ea2724..de1667f727d 100644 --- a/sys/arch/riscv64/include/db_machdep.h +++ b/sys/arch/riscv64/include/db_machdep.h @@ -1,4 +1,4 @@ -/* $OpenBSD: db_machdep.h,v 1.4 2021/07/11 12:21:52 jasper Exp $ */ +/* $OpenBSD: db_machdep.h,v 1.5 2021/08/30 08:11:12 jasper Exp $ */ /* * Copyright (c) 2019 Brian Bamsch <bbamsch@google.com> @@ -49,7 +49,6 @@ #define T_BREAKPOINT (EXCP_BREAKPOINT) #define T_WATCHPOINT (0) -typedef vaddr_t db_addr_t; typedef long db_expr_t; typedef trapframe_t db_regs_t; |