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/pci/if_mn.c | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) (limited to 'sys/pci') diff --git a/sys/pci/if_mn.c b/sys/pci/if_mn.c index 25530be..84053f3 100644 --- a/sys/pci/if_mn.c +++ b/sys/pci/if_mn.c @@ -189,18 +189,15 @@ static ng_rcvdata_t ngmn_rcvdata; static ng_disconnect_t ngmn_disconnect; static struct ng_type mntypestruct = { - NG_ABI_VERSION, - NG_MN_NODE_TYPE, - NULL, - ngmn_constructor, - ngmn_rcvmsg, - ngmn_shutdown, - ngmn_newhook, - NULL, - ngmn_connect, - ngmn_rcvdata, - ngmn_disconnect, - NULL + .version = NG_ABI_VERSION, + .name = NG_MN_NODE_TYPE, + .constructor = ngmn_constructor, + .rcvmsg = ngmn_rcvmsg, + .shutdown = ngmn_shutdown, + .newhook = ngmn_newhook, + .connect = ngmn_connect, + .rcvdata = ngmn_rcvdata, + .disconnect = ngmn_disconnect, }; static MALLOC_DEFINE(M_MN, "mn", "Mx driver related"); -- cgit v1.1