summaryrefslogtreecommitdiff
path: root/sys/dev/ic
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2006-08-28 00:01:36 +0000
committerchristos <christos@NetBSD.org>2006-08-28 00:01:36 +0000
commit7546f55be324985d5e46bdf73bcf21d6d9fe5f2e (patch)
treec6e8276fefa5b09c1ab54518b1b7356f4a7f079a /sys/dev/ic
parent2735c718951202fe0b300b1504f3e8264dd65a44 (diff)
add missing initializer
Diffstat (limited to 'sys/dev/ic')
-rw-r--r--sys/dev/ic/awi.c6
1 files changed, 3 insertions, 3 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__