summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2006-08-30 00:42:41 +0000
committerchristos <christos@NetBSD.org>2006-08-30 00:42:41 +0000
commit16f3fda8be45b0897b71428dad64278d0c90eb03 (patch)
tree45d75b2a532453aeeed8192a154c0e257a1cfb13 /sys/dev
parent2ddf5cde1a8a35ba5b82499ce9d22401316f557b (diff)
fix incomplete initializers
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/pci/eap.c6
-rw-r--r--sys/dev/usb/ehci.c7
2 files changed, 8 insertions, 5 deletions
diff --git a/sys/dev/pci/eap.c b/sys/dev/pci/eap.c
index 373cf3f8f65..0dbbf72c960 100644
--- a/sys/dev/pci/eap.c
+++ b/sys/dev/pci/eap.c
@@ -1,4 +1,4 @@
-/* $NetBSD: eap.c,v 1.85 2006/07/01 15:22:06 chap Exp $ */
+/* $NetBSD: eap.c,v 1.86 2006/08/30 00:42:41 christos Exp $ */
/* $OpenBSD: eap.c,v 1.6 1999/10/05 19:24:42 csapuntz Exp $ */
/*
@@ -58,7 +58,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: eap.c,v 1.85 2006/07/01 15:22:06 chap Exp $");
+__KERNEL_RCSID(0, "$NetBSD: eap.c,v 1.86 2006/08/30 00:42:41 christos Exp $");
#include "midi.h"
#include "joy_eap.h"
@@ -266,6 +266,7 @@ static const struct audio_hw_if eap1370_hw_if = {
eap_trigger_output,
eap_trigger_input,
NULL,
+ NULL,
};
static const struct audio_hw_if eap1371_hw_if = {
@@ -296,6 +297,7 @@ static const struct audio_hw_if eap1371_hw_if = {
eap_trigger_output,
eap_trigger_input,
NULL,
+ NULL,
};
#if NMIDI > 0
diff --git a/sys/dev/usb/ehci.c b/sys/dev/usb/ehci.c
index d01a968123b..3f6eaa8d4d2 100644
--- a/sys/dev/usb/ehci.c
+++ b/sys/dev/usb/ehci.c
@@ -1,4 +1,4 @@
-/* $NetBSD: ehci.c,v 1.110 2006/05/28 13:20:02 blymn Exp $ */
+/* $NetBSD: ehci.c,v 1.111 2006/08/30 00:49:56 christos Exp $ */
/*
* Copyright (c) 2004,2005 The NetBSD Foundation, Inc.
@@ -61,7 +61,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ehci.c,v 1.110 2006/05/28 13:20:02 blymn Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ehci.c,v 1.111 2006/08/30 00:49:56 christos Exp $");
#include "ohci.h"
#include "uhci.h"
@@ -1635,7 +1635,8 @@ Static usb_hub_descriptor_t ehci_hubd = {
{0,0},
0,
0,
- {0},
+ {""},
+ {""},
};
Static int