diff options
| author | christos <christos@NetBSD.org> | 2006-08-30 15:25:58 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2006-08-30 15:25:58 +0000 |
| commit | f5d9b98eb1643c030d6ff012917b28b940855742 (patch) | |
| tree | 93085d039e90945e83cea17e9fea2381e77e09db /sys/dev | |
| parent | 86fad06b76aac522f718e4561cc72807a3874002 (diff) | |
add missing initializer
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/ic/icp_ioctl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/icp_ioctl.c b/sys/dev/ic/icp_ioctl.c index 2c7a29284e8..c5010a7a568 100644 --- a/sys/dev/ic/icp_ioctl.c +++ b/sys/dev/ic/icp_ioctl.c @@ -1,4 +1,4 @@ -/* $NetBSD: icp_ioctl.c,v 1.9 2006/08/23 15:44:29 christos Exp $ */ +/* $NetBSD: icp_ioctl.c,v 1.10 2006/08/30 15:25:58 christos Exp $ */ /*- * Copyright (c) 2003 The NetBSD Foundation, Inc. @@ -76,7 +76,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: icp_ioctl.c,v 1.9 2006/08/23 15:44:29 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: icp_ioctl.c,v 1.10 2006/08/30 15:25:58 christos Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -100,7 +100,7 @@ static dev_type_ioctl(icpioctl); const struct cdevsw icp_cdevsw = { icpopen, nullclose, noread, nowrite, icpioctl, - nostop, notty, nopoll, nommap, nokqfilter, + nostop, notty, nopoll, nommap, nokqfilter, D_OTHER, }; extern struct cfdriver icp_cd; |
