diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-10-16 02:32:28 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-10-16 02:32:28 +0000 |
commit | 046291abd684288f3dd085cdd8c2032c7d289efb (patch) | |
tree | 215615a28783deb51855d973d0275138b95b246d /sys/arch | |
parent | 6037649ca47876222d4432aee3ace5d4beaf0a9c (diff) |
remove unneeded frame.h and riscvreg.h includes
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/riscv64/include/intr.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/arch/riscv64/include/intr.h b/sys/arch/riscv64/include/intr.h index c648b69018f..5a8a90fcc03 100644 --- a/sys/arch/riscv64/include/intr.h +++ b/sys/arch/riscv64/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.7 2024/10/14 10:08:13 jsg Exp $ */ +/* $OpenBSD: intr.h,v 1.8 2024/10/16 02:32:27 jsg Exp $ */ /* * Copyright (c) 2001-2004 Opsycon AB (www.opsycon.se / www.opsycon.com) @@ -103,8 +103,6 @@ enum { #ifndef _LOCORE #include <sys/queue.h> -#include <machine/frame.h> - int splraise(int); int spllower(int); void splx(int); @@ -150,8 +148,6 @@ extern struct riscv_intr_func riscv_intr_func; #define spl0() spllower(IPL_NONE) -#include <machine/riscvreg.h> - void intr_barrier(void *); void riscv_init_smask(void); /* XXX */ |