diff options
author | 2019-03-21 16:51:21 +0000 | |
---|---|---|
committer | 2019-03-21 16:51:21 +0000 | |
commit | 43fc3e033e9004fc7a9232b8ffe20e49a9cebfbd (patch) | |
tree | 8de8a3405e8f4b81055244f0cf34146750dc7dc2 | |
parent | Remove an unused header. (diff) | |
download | wireguard-openbsd-43fc3e033e9004fc7a9232b8ffe20e49a9cebfbd.tar.xz wireguard-openbsd-43fc3e033e9004fc7a9232b8ffe20e49a9cebfbd.zip |
Remove struct intrhand. It is no longer used on octeon.
-rw-r--r-- | sys/arch/octeon/include/intr.h | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/sys/arch/octeon/include/intr.h b/sys/arch/octeon/include/intr.h index 6e13cfad1e8..fea18d5f86b 100644 --- a/sys/arch/octeon/include/intr.h +++ b/sys/arch/octeon/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.19 2019/03/17 05:25:06 visa Exp $ */ +/* $OpenBSD: intr.h,v 1.20 2019/03/21 16:51:21 visa Exp $ */ /* * Copyright (c) 2001-2004 Opsycon AB (www.opsycon.se / www.opsycon.com) @@ -138,26 +138,6 @@ int splraise(int); void splx(int); int spllower(int); -/* - * Interrupt control struct used by interrupt dispatchers - * to hold interrupt handler info. - */ - -#include <sys/evcount.h> - -struct intrhand { - struct intrhand *ih_next; - int (*ih_fun)(void *); - void *ih_arg; - int ih_level; - int ih_irq; - struct evcount ih_count; - int ih_flags; -#define IH_ALLOCATED 0x01 -#define IH_MPSAFE 0x02 - cpuid_t ih_cpuid; -}; - void intr_barrier(void *); /* |