summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2006-08-29 23:42:18 +0000
committerchristos <christos@NetBSD.org>2006-08-29 23:42:18 +0000
commitc65db33038ab8ff8fcc6ec631ae3d5ec5ca1fc82 (patch)
tree48d944f870e21e6b6dfdb421943cce15028a821c /sys/dev
parentf649f50b3541a6974eb04e09a965ba476d566d6e (diff)
fix incomplete initializer.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/pci/cmpci.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/pci/cmpci.c b/sys/dev/pci/cmpci.c
index cb3015a15d0..c45d4e0cd5c 100644
--- a/sys/dev/pci/cmpci.c
+++ b/sys/dev/pci/cmpci.c
@@ -1,4 +1,4 @@
-/* $NetBSD: cmpci.c,v 1.31 2006/05/11 23:54:39 mrg Exp $ */
+/* $NetBSD: cmpci.c,v 1.32 2006/08/29 23:42:18 christos Exp $ */
/*
* Copyright (c) 2000, 2001 The NetBSD Foundation, Inc.
@@ -43,7 +43,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cmpci.c,v 1.31 2006/05/11 23:54:39 mrg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cmpci.c,v 1.32 2006/08/29 23:42:18 christos Exp $");
#if defined(AUDIO_DEBUG) || defined(DEBUG)
#define DPRINTF(x) if (cmpcidebug) printf x
@@ -178,6 +178,7 @@ static const struct audio_hw_if cmpci_hw_if = {
cmpci_trigger_output, /* trigger_output */
cmpci_trigger_input, /* trigger_input */
NULL, /* dev_ioctl */
+ NULL, /* powerstate */
};
#define CMPCI_NFORMATS 4