diff options
| author | christos <christos@NetBSD.org> | 2006-08-28 00:14:50 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2006-08-28 00:14:50 +0000 |
| commit | f7db588ec438ba97ce0f7a8cc8b078411499d621 (patch) | |
| tree | b46c9fec46002c2cf242bb271574d217594bbc7a /sys/dev/bluetooth/btdev.c | |
| parent | 39f8ec76514500cfd563b33e96b412f0c6ab132a (diff) | |
add missing initializer.
Diffstat (limited to 'sys/dev/bluetooth/btdev.c')
| -rw-r--r-- | sys/dev/bluetooth/btdev.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/bluetooth/btdev.c b/sys/dev/bluetooth/btdev.c index ff64dbf4688..bc6b1c959ca 100644 --- a/sys/dev/bluetooth/btdev.c +++ b/sys/dev/bluetooth/btdev.c @@ -1,4 +1,4 @@ -/* $NetBSD: btdev.c,v 1.2 2006/08/20 07:06:58 plunky Exp $ */ +/* $NetBSD: btdev.c,v 1.3 2006/08/28 00:14:50 christos Exp $ */ /*- * Copyright (c) 2006 Itronix Inc. @@ -32,7 +32,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: btdev.c,v 1.2 2006/08/20 07:06:58 plunky Exp $"); +__KERNEL_RCSID(0, "$NetBSD: btdev.c,v 1.3 2006/08/28 00:14:50 christos Exp $"); #include <sys/param.h> #include <sys/conf.h> @@ -81,7 +81,7 @@ dev_type_ioctl(btdevioctl); const struct cdevsw btdev_cdevsw = { btdevopen, btdevclose, noread, nowrite, btdevioctl, - nostop, notty, nopoll, nommap, nokqfilter, + nostop, notty, nopoll, nommap, nokqfilter, D_OTHER }; /* print attach args */ |
