From 144543fb61eda5a33ae4d04216c5a49d4c6af804 Mon Sep 17 00:00:00 2001 From: christos Date: Sun, 3 Sep 2006 05:18:03 +0000 Subject: [PATCH] add missing initializer --- sys/dev/scsipi/scsiconf.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/dev/scsipi/scsiconf.c b/sys/dev/scsipi/scsiconf.c index 4bb2b0589da2..29ec0148acb6 100644 --- a/sys/dev/scsipi/scsiconf.c +++ b/sys/dev/scsipi/scsiconf.c @@ -1,4 +1,4 @@ -/* $NetBSD: scsiconf.c,v 1.237 2006/08/29 20:40:23 bjh21 Exp $ */ +/* $NetBSD: scsiconf.c,v 1.238 2006/09/03 05:18:03 christos Exp $ */ /*- * Copyright (c) 1998, 1999, 2004 The NetBSD Foundation, Inc. @@ -55,7 +55,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: scsiconf.c,v 1.237 2006/08/29 20:40:23 bjh21 Exp $"); +__KERNEL_RCSID(0, "$NetBSD: scsiconf.c,v 1.238 2006/09/03 05:18:03 christos Exp $"); #include #include @@ -113,7 +113,7 @@ static dev_type_ioctl(scsibusioctl); const struct cdevsw scsibus_cdevsw = { scsibusopen, scsibusclose, noread, nowrite, scsibusioctl, - nostop, notty, nopoll, nommap, nokqfilter, + nostop, notty, nopoll, nommap, nokqfilter, D_OTHER, }; static int scsibusprint(void *, const char *);