diff options
| author | christos <christos@NetBSD.org> | 2006-08-28 00:38:47 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2006-08-28 00:38:47 +0000 |
| commit | 4e4ed26fac9d64b5157028682ce9b01b59c3ae83 (patch) | |
| tree | 1ef24f65266d5d385d456f9e78cdbb55a6bdcb27 /sys/dev | |
| parent | e28a71d80a5c495dea1e567665436616457cdb9b (diff) | |
add missing initializer
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/scsipi/ch.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/scsipi/ch.c b/sys/dev/scsipi/ch.c index 9ce479da1ab..20aaa0b508d 100644 --- a/sys/dev/scsipi/ch.c +++ b/sys/dev/scsipi/ch.c @@ -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 */ |
