diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2014-08-10 07:28:33 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2014-08-10 07:28:33 +0000 |
commit | edea14b0b7565b767e7f045c6a0bf3f26a713858 (patch) | |
tree | f8f53af0c41784a77bec03853ba21ad2e7d3b245 /sys/net/netisr.h | |
parent | 6d3d17485898eb98bba6fd27968eb30971da76bc (diff) |
No more bluetooth in netintr(), so delete NETISR_BT. Zap the declaration
for btintr(), as well as the also gone atintr() and clnlintr()
Diffstat (limited to 'sys/net/netisr.h')
-rw-r--r-- | sys/net/netisr.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/net/netisr.h b/sys/net/netisr.h index a554a24cb4f..9d09d25048b 100644 --- a/sys/net/netisr.h +++ b/sys/net/netisr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: netisr.h,v 1.39 2013/10/24 18:50:16 deraadt Exp $ */ +/* $OpenBSD: netisr.h,v 1.40 2014/08/10 07:28:32 guenther Exp $ */ /* $NetBSD: netisr.h,v 1.12 1995/08/12 23:59:24 mycroft Exp $ */ /* @@ -61,7 +61,6 @@ #define NETISR_PPP 28 /* for PPP processing */ #define NETISR_BRIDGE 29 /* for bridge processing */ #define NETISR_PPPOE 30 /* for pppoe processing */ -#define NETISR_BT 31 /* same as AF_BLUETOOTH */ #ifndef _LOCORE #ifdef _KERNEL @@ -71,12 +70,9 @@ void nettxintr(void); void arpintr(void); void ipintr(void); void ip6intr(void); -void atintr(void); -void clnlintr(void); void pppintr(void); void bridgeintr(void); void pppoeintr(void); -void btintr(void); void mplsintr(void); void pfsyncintr(void); |