add missing initializer
This commit is contained in:
parent
a6abab1852
commit
f2e0e5984c
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: smb_dev.c,v 1.22 2006/03/01 12:38:32 yamt Exp $ */
|
||||
/* $NetBSD: smb_dev.c,v 1.23 2006/09/03 05:25:43 christos Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2000-2001 Boris Popov
|
||||
|
@ -35,7 +35,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: smb_dev.c,v 1.22 2006/03/01 12:38:32 yamt Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: smb_dev.c,v 1.23 2006/09/03 05:25:43 christos Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/kernel.h>
|
||||
|
@ -107,7 +107,7 @@ dev_type_ioctl(nsmb_dev_ioctl);
|
|||
|
||||
const struct cdevsw nsmb_cdevsw = {
|
||||
nsmb_dev_open, nsmb_dev_close, noread, nowrite,
|
||||
nsmb_dev_ioctl, nostop, notty, nopoll, nommap, nokqfilter,
|
||||
nsmb_dev_ioctl, nostop, notty, nopoll, nommap, nokqfilter, D_OTHER,
|
||||
};
|
||||
#else
|
||||
static struct cdevsw nsmb_cdevsw = {
|
||||
|
|
Loading…
Reference in New Issue