diff options
author | 2017-07-25 03:46:59 +0000 | |
---|---|---|
committer | 2017-07-25 03:46:59 +0000 | |
commit | 381f9e5221afc61d661d8012d3bd9baedd46ebdb (patch) | |
tree | e8dbed09a2b2d36faed0804e68b8ab1c4a6318f3 /sys/arch/octeon | |
parent | Fix off-by-one error introduced in the previous commit. (diff) | |
download | wireguard-openbsd-381f9e5221afc61d661d8012d3bd9baedd46ebdb.tar.xz wireguard-openbsd-381f9e5221afc61d661d8012d3bd9baedd46ebdb.zip |
Remove leftovers of a past softintr mechanism.
OK mpi@, kettenis@
Diffstat (limited to 'sys/arch/octeon')
-rw-r--r-- | sys/arch/octeon/include/intr.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sys/arch/octeon/include/intr.h b/sys/arch/octeon/include/intr.h index 1b905f83840..03a195e1ab3 100644 --- a/sys/arch/octeon/include/intr.h +++ b/sys/arch/octeon/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.12 2017/06/18 13:58:45 visa Exp $ */ +/* $OpenBSD: intr.h,v 1.13 2017/07/25 03:46:59 visa Exp $ */ /* * Copyright (c) 2001-2004 Opsycon AB (www.opsycon.se / www.opsycon.com) @@ -112,11 +112,6 @@ void *softintr_establish(int, void (*)(void *), void *); void softintr_init(void); void softintr_schedule(void *); -/* XXX For legacy software interrupts. */ -extern struct soft_intrhand *softnet_intrhand; - -#define setsoftnet() softintr_schedule(softnet_intrhand) - #define splsoft() splraise(IPL_SOFTINT) #define splbio() splraise(IPL_BIO) #define splnet() splraise(IPL_NET) |