summaryrefslogtreecommitdiffstats
path: root/sys/sys/device.h
diff options
context:
space:
mode:
authormatthew <matthew@openbsd.org>2011-06-01 04:35:21 +0000
committermatthew <matthew@openbsd.org>2011-06-01 04:35:21 +0000
commit882b5ad9fb966058d7c18f77b7974fd83787f914 (patch)
tree1a8ca8b338761228976e207d39a03d12ee014a30 /sys/sys/device.h
parentAdd a few KASSERTs to config_attach() for sanity to make sure we don't (diff)
downloadwireguard-openbsd-882b5ad9fb966058d7c18f77b7974fd83787f914.tar.xz
wireguard-openbsd-882b5ad9fb966058d7c18f77b7974fd83787f914.zip
Kill the nearly-15-years-dead cf_ivstubs field from struct cfdata.
ok miod@, deraadt@ N.B.: If you're following -current, you MUST recompile config(8) and re-config your kernel or else ioconf.c will fail to compile.
Diffstat (limited to 'sys/sys/device.h')
-rw-r--r--sys/sys/device.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/sys/device.h b/sys/sys/device.h
index 38f12f11d2e..6a23b68bed0 100644
--- a/sys/sys/device.h
+++ b/sys/sys/device.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: device.h,v 1.42 2010/08/31 17:13:48 deraadt Exp $ */
+/* $OpenBSD: device.h,v 1.43 2011/06/01 04:35:22 matthew Exp $ */
/* $NetBSD: device.h,v 1.15 1996/04/09 20:55:24 cgd Exp $ */
/*
@@ -96,7 +96,6 @@ struct cfdata {
int cf_flags; /* flags from config */
short *cf_parents; /* potential parents */
int cf_locnames; /* start of names */
- void (**cf_ivstubs)(void); /* config-generated vectors, if any */
short cf_starunit1; /* 1st usable unit number by STAR */
};
extern struct cfdata cfdata[];