summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2006-08-30 00:53:47 +0000
committerchristos <christos@NetBSD.org>2006-08-30 00:53:47 +0000
commita87d6a05e0bc320e68cb205aa0d857dd8dcabe15 (patch)
tree9f99fb91bb40dd55af5420868b12ed8f72148d68 /sys/dev
parent976d4b3f1cfb6d94c40e0256dfcdc9fd532edda3 (diff)
fix incomplete initializers
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/pci/esa.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/pci/esa.c b/sys/dev/pci/esa.c
index a69a1b9883d..b208997bc16 100644
--- a/sys/dev/pci/esa.c
+++ b/sys/dev/pci/esa.c
@@ -1,4 +1,4 @@
-/* $NetBSD: esa.c,v 1.32 2006/06/17 23:34:26 christos Exp $ */
+/* $NetBSD: esa.c,v 1.33 2006/08/30 00:53:47 christos Exp $ */
/*
* Copyright (c) 2001, 2002 Jared D. McNeill <jmcneill@invisible.ca>
@@ -39,7 +39,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: esa.c,v 1.32 2006/06/17 23:34:26 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: esa.c,v 1.33 2006/08/30 00:53:47 christos Exp $");
#include <sys/types.h>
#include <sys/errno.h>
@@ -222,6 +222,8 @@ static const struct audio_hw_if esa_hw_if = {
esa_get_props,
esa_trigger_output,
esa_trigger_input
+ NULL, /* dev_ioctl */
+ NULL, /* powerstate */
};
CFATTACH_DECL(esa, sizeof(struct esa_softc), esa_match, esa_attach,