diff options
| author | christos <christos@NetBSD.org> | 2006-08-30 02:09:40 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2006-08-30 02:09:40 +0000 |
| commit | afca61baba0ebecb0963f1e1932c51c4887f6bf4 (patch) | |
| tree | 2657ad08e4628ce2610234d53428c5ec505d8570 /sys/dev/gpio | |
| parent | 366af49b8ebd412083e5c83df44006c795716715 (diff) | |
add missing initializers
Diffstat (limited to 'sys/dev/gpio')
| -rw-r--r-- | sys/dev/gpio/gpio.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/gpio/gpio.c b/sys/dev/gpio/gpio.c index d67bbb24fe6..f8cb291db49 100644 --- a/sys/dev/gpio/gpio.c +++ b/sys/dev/gpio/gpio.c @@ -1,4 +1,4 @@ -/* $NetBSD: gpio.c,v 1.8 2006/04/08 22:33:36 uwe Exp $ */ +/* $NetBSD: gpio.c,v 1.9 2006/08/30 02:09:40 christos Exp $ */ /* $OpenBSD: gpio.c,v 1.6 2006/01/14 12:33:49 grange Exp $ */ /* @@ -18,7 +18,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: gpio.c,v 1.8 2006/04/08 22:33:36 uwe Exp $"); +__KERNEL_RCSID(0, "$NetBSD: gpio.c,v 1.9 2006/08/30 02:09:40 christos Exp $"); /* * General Purpose Input/Output framework. @@ -63,7 +63,7 @@ dev_type_ioctl(gpioioctl); const struct cdevsw gpio_cdevsw = { gpioopen, gpioclose, noread, nowrite, gpioioctl, - nostop, notty, nopoll, nommap, nokqfilter, + nostop, notty, nopoll, nommap, nokqfilter, D_OTHER, }; extern struct cfdriver gpio_cd; |
