diff options
author | Visa Hankala <visa@cvs.openbsd.org> | 2017-07-25 03:47:00 +0000 |
---|---|---|
committer | Visa Hankala <visa@cvs.openbsd.org> | 2017-07-25 03:47:00 +0000 |
commit | 56c2c106627e812ad22b73ebf18f575e5d335f65 (patch) | |
tree | 21f154fb4535a842c3ad2c404da02c5157de9386 /sys/arch/octeon/include | |
parent | 0c8d68bf548328baaa9af3486f60951ac9d27834 (diff) |
Remove leftovers of a past softintr mechanism.
OK mpi@, kettenis@
Diffstat (limited to 'sys/arch/octeon/include')
-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) |