From c35f9741bc3400a900f9677f0124675050ce7f8a Mon Sep 17 00:00:00 2001 From: christos Date: Sun, 3 Sep 2006 21:00:01 +0000 Subject: [PATCH] add missing initializer. --- sys/dev/onewire/onewire.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/dev/onewire/onewire.c b/sys/dev/onewire/onewire.c index b87656790a2a..8b011fb6a0ef 100644 --- a/sys/dev/onewire/onewire.c +++ b/sys/dev/onewire/onewire.c @@ -1,4 +1,4 @@ -/* $NetBSD: onewire.c,v 1.1 2006/04/07 18:55:22 riz Exp $ */ +/* $NetBSD: onewire.c,v 1.2 2006/09/03 21:00:01 christos Exp $ */ /* $OpenBSD: onewire.c,v 1.1 2006/03/04 16:27:03 grange Exp $ */ /* @@ -18,7 +18,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: onewire.c,v 1.1 2006/04/07 18:55:22 riz Exp $"); +__KERNEL_RCSID(0, "$NetBSD: onewire.c,v 1.2 2006/09/03 21:00:01 christos Exp $"); /* * 1-Wire bus driver. @@ -81,7 +81,7 @@ CFATTACH_DECL(onewire, sizeof(struct onewire_softc), const struct cdevsw onewire_cdevsw = { noopen, noclose, noread, nowrite, noioctl, nostop, notty, - nopoll, nommap, nokqfilter, + nopoll, nommap, nokqfilter, D_OTHER, }; extern struct cfdriver onewire_cd;