diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2021-11-11 10:03:11 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2021-11-11 10:03:11 +0000 |
commit | 9636fcc99541ea83f25e9e2e8ba7df7de34bef6b (patch) | |
tree | 5deecb8f926c922a3fd4dd62f1fba46676ff24ae /sys/arch/sparc64 | |
parent | 99f1fa30c5cf6ba62b86fc642746c19b42b47aaa (diff) |
Retire switch(4) it never really was production ready and the OpenFlow
API implemented is a deadend.
OK akoshibe@ yasuoka@ deraadt@ kn@ patrick@ sthen@
Diffstat (limited to 'sys/arch/sparc64')
-rw-r--r-- | sys/arch/sparc64/sparc64/conf.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/arch/sparc64/sparc64/conf.c b/sys/arch/sparc64/sparc64/conf.c index 6e7df9247dd..9c5b692f24e 100644 --- a/sys/arch/sparc64/sparc64/conf.c +++ b/sys/arch/sparc64/sparc64/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.85 2021/01/23 05:08:36 thfr Exp $ */ +/* $OpenBSD: conf.c,v 1.86 2021/11/11 10:03:09 claudio Exp $ */ /* $NetBSD: conf.c,v 1.17 2001/03/26 12:33:26 lukem Exp $ */ /* @@ -119,7 +119,6 @@ cdev_decl(pci); #include "vscsi.h" #include "pppx.h" #include "fuse.h" -#include "switch.h" struct bdevsw bdevsw[] = { @@ -295,7 +294,7 @@ struct cdevsw cdevsw[] = cdev_vdsp_init(NVDSP,vdsp), /* 133: vdsp */ cdev_fuse_init(NFUSE,fuse), /* 134: fuse */ cdev_tun_init(NTUN,tap), /* 135: Ethernet network tunnel */ - cdev_switch_init(NSWITCH,switch), /* 136: switch(4) control interface */ + cdev_notdef(), /* 136: was switch(4) */ cdev_fido_init(NFIDO,fido), /* 137: FIDO/U2F security key */ cdev_pppx_init(NPPPX,pppac), /* 138: PPP Access Concentrator */ cdev_ujoy_init(NUJOY,ujoy), /* 139: USB joystick/gamecontroller */ |