add missing initializer
This commit is contained in:
parent
59d19c4947
commit
1b87f8e9cc
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: svr4_net.c,v 1.42 2006/07/23 22:06:10 ad Exp $ */
|
/* $NetBSD: svr4_net.c,v 1.43 2006/09/03 06:29:03 christos Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 1994 The NetBSD Foundation, Inc.
|
* Copyright (c) 1994 The NetBSD Foundation, Inc.
|
||||||
|
@ -41,7 +41,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
__KERNEL_RCSID(0, "$NetBSD: svr4_net.c,v 1.42 2006/07/23 22:06:10 ad Exp $");
|
__KERNEL_RCSID(0, "$NetBSD: svr4_net.c,v 1.43 2006/09/03 06:29:03 christos Exp $");
|
||||||
|
|
||||||
#define COMPAT_SVR4 1
|
#define COMPAT_SVR4 1
|
||||||
|
|
||||||
|
@ -85,7 +85,7 @@ dev_type_open(svr4_netopen);
|
||||||
|
|
||||||
const struct cdevsw svr4_net_cdevsw = {
|
const struct cdevsw svr4_net_cdevsw = {
|
||||||
svr4_netopen, noclose, noread, nowrite, noioctl,
|
svr4_netopen, noclose, noread, nowrite, noioctl,
|
||||||
nostop, notty, nopoll, nommap, nokqfilter,
|
nostop, notty, nopoll, nommap, nokqfilter, D_OTHER,
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue