summaryrefslogtreecommitdiffstats
path: root/sys/dev/musycc
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/dev/musycc
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/dev/musycc')
-rw-r--r--sys/dev/musycc/musycc.c21
1 files changed, 9 insertions, 12 deletions
diff --git a/sys/dev/musycc/musycc.c b/sys/dev/musycc/musycc.c
index 1981349..88f2222 100644
--- a/sys/dev/musycc/musycc.c
+++ b/sys/dev/musycc/musycc.c
@@ -274,18 +274,15 @@ static ng_rcvdata_t musycc_rcvdata;
static ng_disconnect_t musycc_disconnect;
static struct ng_type ngtypestruct = {
- NG_ABI_VERSION,
- NG_NODETYPE,
- NULL,
- musycc_constructor,
- musycc_rcvmsg,
- musycc_shutdown,
- musycc_newhook,
- NULL,
- musycc_connect,
- musycc_rcvdata,
- musycc_disconnect,
- NULL
+ .version = NG_ABI_VERSION,
+ .name = NG_NODETYPE,
+ .constructor = musycc_constructor,
+ .rcvmsg = musycc_rcvmsg,
+ .shutdown = musycc_shutdown,
+ .newhook = musycc_newhook,
+ .connect = musycc_connect,
+ .rcvdata = musycc_rcvdata,
+ .disconnect = musycc_disconnect,
};
/*
OpenPOWER on IntegriCloud