add missing initializer.

This commit is contained in:
christos 2006-09-03 21:00:01 +00:00
parent 4e0d743b9e
commit c35f9741bc
1 changed files with 3 additions and 3 deletions

View File

@ -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 <sys/cdefs.h>
__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;