summaryrefslogtreecommitdiffstats
path: root/sys/i4b
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/i4b
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/i4b')
-rw-r--r--sys/i4b/driver/i4b_ing.c22
1 files changed, 10 insertions, 12 deletions
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);
OpenPOWER on IntegriCloud