add missing initializer

This commit is contained in:
christos 2006-08-28 00:38:47 +00:00
parent e28a71d80a
commit 4e4ed26fac
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: ch.c,v 1.73 2006/03/30 16:09:28 thorpej Exp $ */
/* $NetBSD: ch.c,v 1.74 2006/08/28 00:38:47 christos Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998, 1999, 2004 The NetBSD Foundation, Inc.
@ -38,7 +38,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ch.c,v 1.73 2006/03/30 16:09:28 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: ch.c,v 1.74 2006/08/28 00:38:47 christos Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -128,7 +128,7 @@ static dev_type_kqfilter(chkqfilter);
const struct cdevsw ch_cdevsw = {
chopen, chclose, chread, nowrite, chioctl,
nostop, notty, chpoll, nommap, chkqfilter,
nostop, notty, chpoll, nommap, chkqfilter, D_OTHER
};
/* SCSI glue */