summaryrefslogtreecommitdiffstats
path: root/sys/netgraph/ng_rfc1490.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_rfc1490.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_rfc1490.c')
-rw-r--r--sys/netgraph/ng_rfc1490.c20
1 files changed, 8 insertions, 12 deletions
diff --git a/sys/netgraph/ng_rfc1490.c b/sys/netgraph/ng_rfc1490.c
index e27a0a0..01589c3 100644
--- a/sys/netgraph/ng_rfc1490.c
+++ b/sys/netgraph/ng_rfc1490.c
@@ -97,18 +97,14 @@ static ng_disconnect_t ng_rfc1490_disconnect;
/* Node type descriptor */
static struct ng_type typestruct = {
- NG_ABI_VERSION,
- NG_RFC1490_NODE_TYPE,
- NULL,
- ng_rfc1490_constructor,
- ng_rfc1490_rcvmsg,
- ng_rfc1490_shutdown,
- ng_rfc1490_newhook,
- NULL,
- NULL,
- ng_rfc1490_rcvdata,
- ng_rfc1490_disconnect,
- NULL
+ .version = NG_ABI_VERSION,
+ .name = NG_RFC1490_NODE_TYPE,
+ .constructor = ng_rfc1490_constructor,
+ .rcvmsg = ng_rfc1490_rcvmsg,
+ .shutdown = ng_rfc1490_shutdown,
+ .newhook = ng_rfc1490_newhook,
+ .rcvdata = ng_rfc1490_rcvdata,
+ .disconnect = ng_rfc1490_disconnect,
};
NETGRAPH_INIT(rfc1490, &typestruct);
OpenPOWER on IntegriCloud