From f5d9b98eb1643c030d6ff012917b28b940855742 Mon Sep 17 00:00:00 2001 From: christos Date: Wed, 30 Aug 2006 15:25:58 +0000 Subject: add missing initializer --- sys/dev/ic/icp_ioctl.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/dev') 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 -__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 #include @@ -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; -- cgit