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 | |
| parent | 366af49b8ebd412083e5c83df44006c795716715 (diff) | |
add missing initializers
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/gpio/gpio.c | 6 | ||||
| -rw-r--r-- | sys/dev/isa/gus.c | 6 |
2 files changed, 7 insertions, 5 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; diff --git a/sys/dev/isa/gus.c b/sys/dev/isa/gus.c index 9162dab7baa..253f7633820 100644 --- a/sys/dev/isa/gus.c +++ b/sys/dev/isa/gus.c @@ -1,4 +1,4 @@ -/* $NetBSD: gus.c,v 1.93 2006/04/14 22:52:00 christos Exp $ */ +/* $NetBSD: gus.c,v 1.94 2006/08/30 02:10:38 christos Exp $ */ /*- * Copyright (c) 1996, 1999 The NetBSD Foundation, Inc. @@ -95,7 +95,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: gus.c,v 1.93 2006/04/14 22:52:00 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: gus.c,v 1.94 2006/08/30 02:10:38 christos Exp $"); #include "gus.h" #if NGUS > 0 @@ -612,6 +612,7 @@ const struct audio_hw_if gus_hw_if = { NULL, NULL, NULL, + NULL, }; static const struct audio_hw_if gusmax_hw_if = { @@ -642,6 +643,7 @@ static const struct audio_hw_if gusmax_hw_if = { NULL, NULL, NULL, + NULL, }; /* |
