summaryrefslogtreecommitdiffstats
path: root/sys/netgraph/ng_one2many.c
diff options
context:
space:
mode:
authorjulian <julian@FreeBSD.org>2004-05-29 00:51:19 +0000
committerjulian <julian@FreeBSD.org>2004-05-29 00:51:19 +0000
commitc85e63d425834e8115ce20fabc98cfe9af17974c (patch)
tree90dfb9283e4889f34526e006d0e40a59d5312611 /sys/netgraph/ng_one2many.c
parent2873042997b2bd3b9ebb64d3ea805924eaf82ede (diff)
downloadFreeBSD-src-c85e63d425834e8115ce20fabc98cfe9af17974c.zip
FreeBSD-src-c85e63d425834e8115ce20fabc98cfe9af17974c.tar.gz
Switch to using C99 sparse initialisers for the type methods array.
Should make no binary difference. Submitted by: Gleb Smirnoff <glebius@cell.sick.ru> Reviewed by: Harti Brandt <harti@freebsd.org> MFC after: 1 week
Diffstat (limited to 'sys/netgraph/ng_one2many.c')
-rw-r--r--sys/netgraph/ng_one2many.c21
1 files changed, 9 insertions, 12 deletions
diff --git a/sys/netgraph/ng_one2many.c b/sys/netgraph/ng_one2many.c
index 927bb77..4c9720e 100644
--- a/sys/netgraph/ng_one2many.c
+++ b/sys/netgraph/ng_one2many.c
@@ -162,18 +162,15 @@ static const struct ng_cmdlist ng_one2many_cmdlist[] = {
/* Node type descriptor */
static struct ng_type ng_one2many_typestruct = {
- NG_ABI_VERSION,
- NG_ONE2MANY_NODE_TYPE,
- NULL,
- ng_one2many_constructor,
- ng_one2many_rcvmsg,
- ng_one2many_shutdown,
- ng_one2many_newhook,
- NULL,
- NULL,
- ng_one2many_rcvdata,
- ng_one2many_disconnect,
- ng_one2many_cmdlist,
+ .version = NG_ABI_VERSION,
+ .name = NG_ONE2MANY_NODE_TYPE,
+ .constructor = ng_one2many_constructor,
+ .rcvmsg = ng_one2many_rcvmsg,
+ .shutdown = ng_one2many_shutdown,
+ .newhook = ng_one2many_newhook,
+ .rcvdata = ng_one2many_rcvdata,
+ .disconnect = ng_one2many_disconnect,
+ .cmdlist = ng_one2many_cmdlist,
};
NETGRAPH_INIT(one2many, &ng_one2many_typestruct);
OpenPOWER on IntegriCloud