diff options
| author | christos <christos@NetBSD.org> | 2006-09-03 21:00:01 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2006-09-03 21:00:01 +0000 |
| commit | c35f9741bc3400a900f9677f0124675050ce7f8a (patch) | |
| tree | 08e6bdab93c7cddab82bb9d05ab39165a0d0151b /sys/dev/onewire | |
| parent | 4e0d743b9ed85605bd929a60696bc95fe903fa3c (diff) | |
add missing initializer.
Diffstat (limited to 'sys/dev/onewire')
| -rw-r--r-- | sys/dev/onewire/onewire.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/onewire/onewire.c b/sys/dev/onewire/onewire.c index b87656790a2..8b011fb6a0e 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 <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; |
