aboutsummaryrefslogtreecommitdiff
path: root/sys/netgraph/ng_cisco.c
diff options
context:
space:
mode:
authorJulian Elischer <julian@FreeBSD.org>2004-05-29 00:51:19 +0000
committerJulian Elischer <julian@FreeBSD.org>2004-05-29 00:51:19 +0000
commitf8aae7776f85d2fa8aa93f73c37782cd9e1204c6 (patch)
tree90dfb9283e4889f34526e006d0e40a59d5312611 /sys/netgraph/ng_cisco.c
parentad7df741c9173bdd5763a9d95343cb071a7885ff (diff)
downloadsrc-f8aae7776f85d2fa8aa93f73c37782cd9e1204c6.tar.gz
src-f8aae7776f85d2fa8aa93f73c37782cd9e1204c6.zip
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
Notes
Notes: svn path=/head/; revision=129823
Diffstat (limited to 'sys/netgraph/ng_cisco.c')
-rw-r--r--sys/netgraph/ng_cisco.c21
1 files changed, 9 insertions, 12 deletions
diff --git a/sys/netgraph/ng_cisco.c b/sys/netgraph/ng_cisco.c
index c50fdefaf1e0..6b37ddb55c4e 100644
--- a/sys/netgraph/ng_cisco.c
+++ b/sys/netgraph/ng_cisco.c
@@ -171,18 +171,15 @@ static const struct ng_cmdlist ng_cisco_cmdlist[] = {
/* Node type */
static struct ng_type typestruct = {
- NG_ABI_VERSION,
- NG_CISCO_NODE_TYPE,
- NULL,
- cisco_constructor,
- cisco_rcvmsg,
- cisco_shutdown,
- cisco_newhook,
- NULL,
- NULL,
- cisco_rcvdata,
- cisco_disconnect,
- ng_cisco_cmdlist
+ .version = NG_ABI_VERSION,
+ .name = NG_CISCO_NODE_TYPE,
+ .constructor = cisco_constructor,
+ .rcvmsg = cisco_rcvmsg,
+ .shutdown = cisco_shutdown,
+ .newhook = cisco_newhook,
+ .rcvdata = cisco_rcvdata,
+ .disconnect = cisco_disconnect,
+ .cmdlist = ng_cisco_cmdlist,
};
NETGRAPH_INIT(cisco, &typestruct);