diff options
| author | christos <christos@NetBSD.org> | 2006-08-28 00:01:36 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2006-08-28 00:01:36 +0000 |
| commit | 7546f55be324985d5e46bdf73bcf21d6d9fe5f2e (patch) | |
| tree | c6e8276fefa5b09c1ab54518b1b7356f4a7f079a /sys/dev | |
| parent | 2735c718951202fe0b300b1504f3e8264dd65a44 (diff) | |
add missing initializer
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/ic/awi.c | 6 | ||||
| -rw-r--r-- | sys/dev/pci/autri.c | 5 | ||||
| -rw-r--r-- | sys/dev/pci/auvia.c | 5 |
3 files changed, 9 insertions, 7 deletions
diff --git a/sys/dev/ic/awi.c b/sys/dev/ic/awi.c index 99138d4c29c..a38434e4621 100644 --- a/sys/dev/ic/awi.c +++ b/sys/dev/ic/awi.c @@ -1,4 +1,4 @@ -/* $NetBSD: awi.c,v 1.70 2006/04/14 20:33:57 christos Exp $ */ +/* $NetBSD: awi.c,v 1.71 2006/08/28 00:03:15 christos Exp $ */ /*- * Copyright (c) 1999,2000,2001 The NetBSD Foundation, Inc. @@ -86,7 +86,7 @@ #include <sys/cdefs.h> #ifdef __NetBSD__ -__KERNEL_RCSID(0, "$NetBSD: awi.c,v 1.70 2006/04/14 20:33:57 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: awi.c,v 1.71 2006/08/28 00:03:15 christos Exp $"); #endif #ifdef __FreeBSD__ __FBSDID("$FreeBSD: src/sys/dev/awi/awi.c,v 1.30 2004/01/15 13:30:06 onoe Exp $"); @@ -214,7 +214,7 @@ struct awi_chanset awi_chanset[] = { { AWI_PHY_TYPE_DS, AWI_REG_DOMAIN_US, 1, 11, 3 }, { AWI_PHY_TYPE_DS, AWI_REG_DOMAIN_CA, 1, 11, 3 }, { AWI_PHY_TYPE_DS, AWI_REG_DOMAIN_EU, 1, 13, 3 }, - { 0, 0 } + { 0, 0, 0, 0, 0 } }; #ifdef __FreeBSD__ diff --git a/sys/dev/pci/autri.c b/sys/dev/pci/autri.c index bd91395c0fd..e3f0b4874c1 100644 --- a/sys/dev/pci/autri.c +++ b/sys/dev/pci/autri.c @@ -1,4 +1,4 @@ -/* $NetBSD: autri.c,v 1.30 2006/03/08 23:46:27 lukem Exp $ */ +/* $NetBSD: autri.c,v 1.31 2006/08/28 00:01:36 christos Exp $ */ /* * Copyright (c) 2001 SOMEYA Yoshihiko and KUROSAWA Takahiro. @@ -35,7 +35,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: autri.c,v 1.30 2006/03/08 23:46:27 lukem Exp $"); +__KERNEL_RCSID(0, "$NetBSD: autri.c,v 1.31 2006/08/28 00:01:36 christos Exp $"); #include "midi.h" @@ -163,6 +163,7 @@ static const struct audio_hw_if autri_hw_if = { autri_trigger_output, autri_trigger_input, NULL, /* dev_ioctl */ + NULL, /* powerstate */ }; #if NMIDI > 0 diff --git a/sys/dev/pci/auvia.c b/sys/dev/pci/auvia.c index f3dbe13b399..6ebfa8e93f1 100644 --- a/sys/dev/pci/auvia.c +++ b/sys/dev/pci/auvia.c @@ -1,4 +1,4 @@ -/* $NetBSD: auvia.c,v 1.54 2006/07/27 15:35:01 kent Exp $ */ +/* $NetBSD: auvia.c,v 1.55 2006/08/28 00:02:21 christos Exp $ */ /*- * Copyright (c) 2000 The NetBSD Foundation, Inc. @@ -47,7 +47,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: auvia.c,v 1.54 2006/07/27 15:35:01 kent Exp $"); +__KERNEL_RCSID(0, "$NetBSD: auvia.c,v 1.55 2006/08/28 00:02:21 christos Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -236,6 +236,7 @@ static const struct audio_hw_if auvia_hw_if = { auvia_trigger_output, auvia_trigger_input, NULL, /* dev_ioctl */ + NULL, /* powerstate */ }; #define AUVIA_FORMATS_4CH_16 2 |
