fix initializer
This commit is contained in:
parent
9d7a9c4079
commit
514b3fccd7
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: if_we_mca.c,v 1.15 2006/03/29 06:58:14 thorpej Exp $ */
|
||||
/* $NetBSD: if_we_mca.c,v 1.16 2006/08/30 17:01:45 christos Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1997, 1998, 2001 The NetBSD Foundation, Inc.
|
||||
|
@ -60,7 +60,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_we_mca.c,v 1.15 2006/03/29 06:58:14 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_we_mca.c,v 1.16 2006/08/30 17:01:45 christos Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -121,7 +121,8 @@ static const struct we_mca_product {
|
|||
WD_8003, WE_TYPE_WD8003W, "WD8003W/A" },
|
||||
{ MCA_PRODUCT_IBM_WD_O, "IBM PS/2 Adapter/A for Ethernet Networks",
|
||||
WD_8003, WE_TYPE_WD8003W, "IBM PS/2 Adapter/A" },
|
||||
{ 0x0000, NULL },
|
||||
{ 0x0000, NULL,
|
||||
0, 0, NULL },
|
||||
};
|
||||
|
||||
/* see POS description in we_mca_attach() */
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: if_tun.c,v 1.90 2006/07/23 22:06:13 ad Exp $ */
|
||||
/* $NetBSD: if_tun.c,v 1.91 2006/08/30 17:00:15 christos Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1988, Julian Onions <jpo@cs.nott.ac.uk>
|
||||
|
@ -15,7 +15,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_tun.c,v 1.90 2006/07/23 22:06:13 ad Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_tun.c,v 1.91 2006/08/30 17:00:15 christos Exp $");
|
||||
|
||||
#include "opt_inet.h"
|
||||
#include "opt_ns.h"
|
||||
|
@ -103,7 +103,7 @@ static dev_type_kqfilter(tunkqfilter);
|
|||
|
||||
const struct cdevsw tun_cdevsw = {
|
||||
tunopen, tunclose, tunread, tunwrite, tunioctl,
|
||||
nostop, notty, tunpoll, nommap, tunkqfilter,
|
||||
nostop, notty, tunpoll, nommap, tunkqfilter, D_OTHER,
|
||||
};
|
||||
|
||||
void
|
||||
|
|
Loading…
Reference in New Issue