diff options
| author | christos <christos@NetBSD.org> | 2006-09-03 05:20:21 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2006-09-03 05:20:21 +0000 |
| commit | 4ac9cd5ebedb56419d77504886078edd07ad1c33 (patch) | |
| tree | 0d7f235faec7fcb09cf3fe973dd8a0ab1fc4d7e0 /sys/dev | |
| parent | 7ed28205b667d01433e53e0a7f29de32209371d7 (diff) | |
add missing initializer
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/scsipi/ses.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/scsipi/ses.c b/sys/dev/scsipi/ses.c index 708cabff3a8..2c2218689b9 100644 --- a/sys/dev/scsipi/ses.c +++ b/sys/dev/scsipi/ses.c @@ -1,4 +1,4 @@ -/* $NetBSD: ses.c,v 1.34 2006/04/14 17:36:51 christos Exp $ */ +/* $NetBSD: ses.c,v 1.35 2006/09/03 05:20:21 christos Exp $ */ /* * Copyright (C) 2000 National Aeronautics & Space Administration * All rights reserved. @@ -26,7 +26,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: ses.c,v 1.34 2006/04/14 17:36:51 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: ses.c,v 1.35 2006/09/03 05:20:21 christos Exp $"); #include "opt_scsi.h" @@ -139,7 +139,7 @@ static dev_type_ioctl(sesioctl); const struct cdevsw ses_cdevsw = { sesopen, sesclose, noread, nowrite, sesioctl, - nostop, notty, nopoll, nommap, nokqfilter, + nostop, notty, nopoll, nommap, nokqfilter, D_OTHER, }; static int ses_runcmd(struct ses_softc *, char *, int, char *, int *); |
