From c85e63d425834e8115ce20fabc98cfe9af17974c Mon Sep 17 00:00:00 2001 From: julian Date: Sat, 29 May 2004 00:51:19 +0000 Subject: Switch to using C99 sparse initialisers for the type methods array. Should make no binary difference. Submitted by: Gleb Smirnoff Reviewed by: Harti Brandt MFC after: 1 week --- sys/i4b/driver/i4b_ing.c | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) (limited to 'sys/i4b') diff --git a/sys/i4b/driver/i4b_ing.c b/sys/i4b/driver/i4b_ing.c index 02e127f..6a79ee1 100644 --- a/sys/i4b/driver/i4b_ing.c +++ b/sys/i4b/driver/i4b_ing.c @@ -198,18 +198,16 @@ static const struct ng_cmdlist ng_ing_cmdlist[] = { /* Netgraph node type descriptor */ static struct ng_type typestruct = { - NG_ABI_VERSION, - NG_ING_NODE_TYPE, - NULL, - ng_ing_constructor, - ng_ing_rcvmsg, - ng_ing_shutdown, - ng_ing_newhook, - NULL, - ng_ing_connect, - ng_ing_rcvdata, - ng_ing_disconnect, - ng_ing_cmdlist + .version = NG_ABI_VERSION, + .name = NG_ING_NODE_TYPE, + .constructor = ng_ing_constructor, + .rcvmsg = ng_ing_rcvmsg, + .shutdown = ng_ing_shutdown, + .newhook = ng_ing_newhook, + .connect = ng_ing_connect, + .rcvdata = ng_ing_rcvdata, + .disconnect = ng_ing_disconnect, + .cmdlist = ng_ing_cmdlist, }; NETGRAPH_INIT_ORDERED(ing, &typestruct, SI_SUB_DRIVERS, SI_ORDER_ANY); -- cgit v1.1